update page now

Voting

: min(zero, three)?
(Example: nine)

The Note You're Voting On

dhairya lakhera
9 years ago
class  TestClass { }

$TestObj=new TestClass();

$TestObj_assigned=$TestObj;
$TestObj_Refrenced=&$TestObj;
$TestObj_cloned=clone $TestObj;

$obj=new ReflectionClass('TestClass');

var_dump($obj->isInstance($TestObj)); 
var_dump($obj->isInstance($TestObj_assigned)); 
var_dump($obj->isInstance($TestObj_Refrenced)); 
var_dump($obj->isInstance($TestObj_cloned));

<< Back to user notes page

To Top