Which version of PHP introduced the instanceof keyword?
Which version of PHP introduced the instanceof keyword? 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”;