<?php class Foo { public function isFoo() { return $this instanceof Foo; } } class Bar { public function doSomething() { return Foo::isFoo(); } } $bar = new Bar; var_dump($bar->doSomething());
You have javascript disabled. You will not be able to edit any code.