biz bu gibi bir dizi var varsayalım
$arr=array(array('a'=>1,'b'=>2),array('c'=>3,'d'=>4));
ve elemanların birine referans
$element=&$arr[1]['c'];
My question is is it possible to get back to the original array using the reference alone? That is to get back to the parent array in some way without knowing it by name... This would be useful to me in a more complex scenario.