I've got a multidimensional array, which refers to itself multiple times. like:
$foo = array(
0 => array(
& $foo[1],
& $foo[2],
'bar',
),
1 => array(
& $foo[0],
& $foo[2],
'bar',
),
2 => array(
& $foo[0],
& $foo[1],
'bar',
),
)
Is there a way to get the size (in bites or in amout of elements) of this array?
Kind Regards,
Tempestas Ludi.