自动加载对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动加载对象相关的知识,希望对你有一定的参考价值。
http://us.php.net/manual/en/language.oop5.autoload.php#82614
<?php function __autoload($class_name) { //class directories 'classes/', 'classes/otherclasses/', 'classes2/', 'module1/classes/' ); //for each directory foreach($directorys as $directory) { //see if the file exsists { require_once($directory.$class_name . '.php'); //only require the class once, so quit after to save effort (if you got more, then name them something else return; } } } ?>
以上是关于自动加载对象的主要内容,如果未能解决你的问题,请参考以下文章
关于js----------------分享前端开发常用代码片段
[AndroidStudio]_[初级]_[配置自动完成的代码片段]
[AndroidStudio]_[初级]_[配置自动完成的代码片段]
[AndroidStudio]_[初级]_[配置自动完成的代码片段]