Vidyalelo
PHP · Q84

Object Oriented Concept

Programming · PHP · question 84

Q84

Which function was introduced to help automate the inclusion of class files?

A.
__load()
B.
__preload()
C.
__autoload()
Answer
D.
__inload()

Answer: Option C

Solution

Answer: Option C
Solution:
When the PHP engine encounters an attempt to instantiate an unknown class, it invokes the __autoload() function, passing it the class name as a string. It is up to the implementer to define a strategy for locating and including the missing class file.