类的自动加载
1.类的自动加载的两个条件:
a. 类名和文件名的相互对应(同名,类名采用大驼峰的原则,首字母大写);
b. 类空间和类文件路径的一致。
2.类的自动加载的一个关键函数;
splautoloadregister(function($class){
// 将空间名和文件路径协调起来
$path = str_replace(“\“,DIRECTORY_SEPARATOR,$class);
$file = __DIR .’/‘ . $path.”.php”;
if(is_file($file) && file_exists($file)){
require $file;
}else{
die(“文件不存在”);
}
});
3. 类的别名的使用
use admin\controller\Index;
use admin\model\User;
use admin\view\index\Hello;
4.类的加载实例
4.1 文件架构
文件的架构如图:
4.2 要自动加载的文件
4.2.1 admin\controller下的Index.php
<?php
namespace admin\controller;
class Index {
public static function controllerhere()
{
echo __FILE__;
}
}
?>
4.2.2 admin\model下的User.php
<?php
namespace admin\model;
class User{
public static function userhere()
{
echo __FILE__;
}
}
?>
4.3 admin\view\index 下的Hello.php
<?php
namespace admin\view\index;
class Hello{
public static function hellohere()
{
echo __FILE__;
}
}
?>
4.4 用类封装后的加载文件index.php
<?php
namespace core;
class Main {
public function __construct()
{
}
public static function show(){
spl_autoload_register(function($class){
echo $class;
echo PHP_EOL;
// 将空间名和文件路径协调起来
$path = str_replace("\\",DIRECTORY_SEPARATOR,$class);
$file = __DIR__ .'/' . $path.".php";
if(is_file($file) && file_exists($file)){
require $file;
}else{
die("文件不存在");
}
});
}
}
Main::show();
use admin\controller\Index;
use admin\model\User;
use admin\view\index\Hello;
echo Index::controllerhere().PHP_EOL;
echo User::userhere().PHP_EOL;
echo Hello::hellohere().PHP_EOL;
?>