PHP 8.5.0 Alpha 4 available for testing

Voting

: max(three, five)?
(Example: nine)

The Note You're Voting On

Anonymous
10 years ago
If you're not getting a count(array_diff($a1,$a2))>0 with something similar to the following arrays should use the php.net/array_diff_assoc function instead.

$a1 = Array
(
[0] => id
[1] => id_1
[2] => id_2
)

$a2 = Array
(
[0] => id
[1] => id_2
[2] => id_1
)

<< Back to user notes page

To Top