类的自动加载

Original 2019-02-18 21:24:30 161
abstract:spl_autoload_register(function($className){ // include 'public/'.$className.'.php'; //推荐使用绝对路径 include __DIR__.'\public\\'.$className.'.php';});

spl_autoload_register(function($className){

// include 'public/'.$className.'.php';

//推荐使用绝对路径

include __DIR__.'\public\\'.$className.'.php';

});


Correcting teacher:韦小宝Correction time:2019-02-19 09:19:17
Teacher's summary:写的还是很不错的 这些自动加载一定要使用到实际的案例中才能发现它的作用!

Release Notes

Popular Entries