How does the parameter $class of the spl_autoload_register(function($class){} callback function identify the class to be loaded?
安超2023-01-13 22:07:10
0
1
659
spl_autoload_register(function($class){}How does the parameter $class of the callback function identify the class to be loaded? Are automatically loaded classes under the same root file all identifiable by $class?
Tell me the specific situation