php __autoload函数用法 function __autoload($class){ include_once("path".$class.".php");} 自动加载后直接实例化$class类$p=new mysql();