Image

Imagesoltice wrote in Imagephp

Reference Compare

Is it possible to compare to references for equality in PHP4? For example,

$a =& new Object();
$b =& $a;

if($a [somthing] $b){


And so forth. When I try ==, I get a "nesting level too deep" error.

Thanks!