Is it possible to get unique id of scalar/array variable in PHP5.3 Something like object hash for objects. For example i have:
$a = array(1, 2, 3);
$b = &$a;
so unique id for variable $a and $b, has to be same, maybe derrived from memory pointer.
I didn t find any alternative function to spl_object_hash
.