if(function_exists('spl_autoload_register')){
try {
spl_autoload_register(function ($name) {
if(file_exists($name.'.php')){
require_once $name.'.php';
}else{
throw new Exception('undefined this');
}
});
}catch (Exception $e){
echo $e->getMessage();
exit;
}
}
class main{
public function myf(){
$test = new tests;
$test->show();
}
}
犯罪嫌疑人X