Which version of PHP introduced the instanceof keyword?
A
PHP 4
B
PHP 5
C
PHP 5.3
Correct Answer: PHP 5
Using instanceof keyword we can determine whether an object is an instance of a class. $manager = new Employee() … if ($manager instanceof Employee) echo “True”;