Heim > Fragen und Antworten > Hauptteil
function __autoload($className)
{
$path = $className.'.php'; //test.php
if (file_exists($path)) {
require_once($path);
} else {
echo $path.„Existiert nicht, bitte überprüfen~~“
}
卢小强2019-11-16 08:55:17
autoload()是自动加载函数,$className中文意思是类名,而且$className是变量,你传什么值就是xxxx.php