2.4k questions

2.4k answers

99.5k users

Categories

0 votes
63 views
What is autoloading classes in PHP?
in General by (95.8k points)

1 Answer

0 votes

By registering autoloaders, PHP is given a last chance to load the class or interface before it fails with an error. Any class-like construct may be autoloaded the same way. That includes classes, interfaces, traits, and enumerations.

by (95.8k points)
...