Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 610 Bytes

0762.md

File metadata and controls

15 lines (12 loc) · 610 Bytes

Which of the following statements about autoloading is true?

  • A) multiple autoloading functions can be defined using spl_autoload_register()
  • B) autoloading is executed whenever the name of an unidentified class is encountered in the code
  • C) autoloading should be avoided due to high performance penalties
  • D) an autoloading function should throw an exception if it cannot find the required class
Answer

Answer: A