```//这里是绝对路径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();```