The only single Type operator instanceof is used to determine whether a PHP variable is an instantiated object of a certain class
instanceof
<?php class MyClass { } $a = new MyClass; var_dump($a instanceof MyClass); ?>