1 Star 1 Fork 2

mz / pttp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Autoloader.php 2.19 KB
一键复制 编辑 原始数据 按行查看 历史
mz 提交于 2016-02-10 20:18 . initial commit
<?php
namespace Workerman;
use \Workerman\Worker;
use \Workerman\Protocols\Http;
define('OS', PHP_OS == 'WINNT' ? 'win' : 'linux');
define('WM_DIR', __DIR__ . DIRECTORY_SEPARATOR . 'workerman' . DIRECTORY_SEPARATOR . OS . DIRECTORY_SEPARATOR);
// mzphp root path
define('ROOT_PATH', './');
// 包含常量定义文件
require_once WM_DIR . 'Lib/Constants.php';
Autoloader::setRootPath(WM_DIR);
/**
* 自动加载类
*
* @author walkor<walkor@workerman.net>
*/
class Autoloader {
// 应用的初始化目录,作为加载类文件的参考目录
protected static $_appInitPath = '';
/**
* 设置应用初始化目录
*
* @param string $root_path
* @return void
*/
public static function setRootPath($root_path) {
self::$_appInitPath = $root_path;
}
/**
* 根据命名空间加载文件
*
* @param string $name
* @return boolean
*/
public static function loadByNamespace($name) {
// 相对路径
$class_path = str_replace('\\', DIRECTORY_SEPARATOR, $name);
// 如果是Workerman命名空间,则在当前目录寻找类文件
if (strpos($name, 'Workerman\\') === 0) {
$class_file = WM_DIR . substr($class_path, strlen('Workerman')) . '.php';
} else if (strpos($name, 'pttp\\') === 0) {
$class_file = 'pttp' . substr($class_path, strlen('pttp')) . '.php';
} else {
// 先尝试在应用目录寻找文件
if (self::$_appInitPath) {
$class_file = self::$_appInitPath . DIRECTORY_SEPARATOR . $class_path . '.php';
}
// 文件不存在,则在上一层目录寻找
if (empty($class_file) || !is_file($class_file)) {
$class_file = WM_DIR . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . "$class_path.php";
}
}
// 找到文件
if (is_file($class_file)) {
// 加载
require_once($class_file);
if (class_exists($name, false)) {
return true;
}
}
return false;
}
}
// 设置类自动加载回调函数
spl_autoload_register('\Workerman\Autoloader::loadByNamespace');
PHP
1
https://gitee.com/mz/pttp.git
git@gitee.com:mz/pttp.git
mz
pttp
pttp
master

搜索帮助