首页 > 代码库 > [李景山php]每天TP5-20161203|Loader.php-1

[李景山php]每天TP5-20161203|Loader.php-1

namespace think;
// 基于 最基础的 think 命名空间
use think\exception\ClassNotFoundException;
// think\exception\ClassNotFoundException
// 运行 未发现类 异常
class Loader
{// 类加载,类
    protected static $instance = [];// 受保护的 静态的 类名映射   也就是实例化了
    // 类名映射
    protected static $map = [];// 类映射 存储位置 映射 存储关系

    // 命名空间别名
    protected static $namespaceAlias = [];// 别名 命名空间 别名

    // PSR-4
    private static $prefixLengthsPsr4 = [];// PSR-4
    private static $prefixDirsPsr4    = [];// PSR-4
    private static $fallbackDirsPsr4  = [];// PSR-4

    // PSR-0
    private static $prefixesPsr0     = [];// PSR-0
    private static $fallbackDirsPsr0 = [];// PSR-0


本文出自 “专注php 群号:414194301” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1857199

[李景山php]每天TP5-20161203|Loader.php-1