how can I check if 2 arrays are not equal, but ideed the same?
$a = [1,2,3,4,5]; $b = [1,2,3,4,5]; $c = $b; What comparation returns true for $c,$bbut false for $a,$b? spl_object_id() sadly wont accept an array.. php identity
PHP: how can I check if 2 arrays are not equal, but ideed the same?
$a = [1,2,3,4,5]; $b = [1,2,3,4,5]; $c = $b; What comparation returns true for $c,$bbut false for $a,$b? php identity