1 Star 1 Fork 15

就不过来/Lcrawl

forked from Near_Je/Lcrawl 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autoloader.php 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Near_Je 提交于 2015-04-08 15:08 . No commit message
<?php
namespace Lcrawl;
/**
* 自动载入函数
* @Created by Luoning.
* @Author: Luoning
* @Mail luoning@luoning.me
* @Date: 2015-04-03
* @Time: 21:47
* @Blog: Http://www.luoning.me
*/
class Autoloader{
const NAMESPACE_PREFIX = 'Lcrawl\\';
/**
* 向PHP注册在自动载入函数
*/
public static function register(){
spl_autoload_register(array(new self, 'autoload'));
}
/**
* 根据类名载入所在文件
*/
public static function autoload($className){
$namespacePrefixStrlen = strlen(self::NAMESPACE_PREFIX);
if(strncmp(self::NAMESPACE_PREFIX, $className, $namespacePrefixStrlen) === 0){
$className = strtolower($className);
$filePath = str_replace('\\', DIRECTORY_SEPARATOR, substr($className, $namespacePrefixStrlen));
$filePath = realpath(__DIR__ . (empty($filePath) ? '' : DIRECTORY_SEPARATOR) . $filePath . '.class.php');
if(file_exists($filePath)){
require_once $filePath;
}else{
echo $filePath;
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jbgl/Lcrawl.git
git@gitee.com:jbgl/Lcrawl.git
jbgl
Lcrawl
Lcrawl
master

搜索帮助