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
时间: 2024-12-28 21:18:41