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