I'd like to know which PHP functions and keywords initiate the instantiation loading of a class definition file.
I know of these two:
- The
newkeyword - The
class_exists()function (if called with$autoloadargument set totrue)
I'm sure there must be more, but I haven't been able to find any more.
Any additions to the list would be appreciated.