$a = [1,2,3,4,5];
$b = [1,2,3,4,5];
$c = $b;
What comparation returns true for $c,$b
but false for $a,$b
?
spl_object_id()
sadly wont accept an array..
$a = [1,2,3,4,5];
$b = [1,2,3,4,5];
$c = $b;
What comparation returns true for $c,$b
but false for $a,$b
?
spl_object_id()
sadly wont accept an array..