php 自动加载 autoload()
程序员文章站
2022-06-17 17:13:14
...
```//这里是绝对路径set_include_path(implode(PATH_SEPARATOR, array( realpath('/opt/www/wcms/lib'), get_include_path())));```//这个方法```function __autoload($className){ //如果加这个检测, 因为此文件不在当前目录下,它就会检测不到文件存在, //但include是能成功的 require_once $className . '.php';}$erpSer=new ERPService();$erpSer->batchDeliver();```
上一篇: PHP数组操作有关问题
下一篇: Oracle 10g OEM常规错误解决