PHP类的自动载入程序代码
发布:smiling 来源: PHP粉丝网 添加日期:2015-12-24 13:33:36 浏览: 评论:0
自动载入类在php中魔术方法了,我们可以通过php中的_autoload方法来实现了,下面一起来看一篇关于PHP类的自动载入程序代码,希望本文章对各位有帮助.
加入我们现在有两个PHP文件,内容如下:
Test1.php
- <?php
- class Test1 {
- public function func1() {
- return 'test1';
- }
- }
- ?>
Test2.php
- <?php
- class Test2 {
- public function func2() {
- return 'test2';
- }
- }
- ?>
然而在需要载入这两个文件时,传统的写法是这样的:
- <?php
- require ('Test1.php');
- require ('Test2.php');
- $TestObj1 = new Test1();
- $TestObj2 = new Test2();
- echo $TestObj1->func1().'<br/>';
- echo $TestObj2->func2();
- ?>
现在我们使用PHP类的自动载入,只需要定义 __autoload() 方法既可将类自动载入,方法如下:
- <?php
- //define autoload function
- function __autoload($class) {
- require __DIR__.'/'.$class.'.php';
- } //phpfensi.com
- $TestObj1 = new Test1();
- $TestObj2 = new Test2();
- echo $TestObj1->func1().'<br/>';
- echo $TestObj2->func2();
- ?>
很方便吧,可是之后__autoload这个函数被废弃掉了,主要原因是因为,我们一个PHP的项目可能会依赖多个框架,如果我们每一个框架都拥有这个函数,那么程序就会报一个函数重复定义的致命错误,当然不用担心,在PHP5.3之后呢,官方提供了一个 spl_autoload_register() 函数来取代 __autoload,这个函数的特点是它允许你存在多个相同的载入函数,即使我写了多个载入,也不会出现任何问题,代码如下:
- <?php
- spl_autoload_register(autoload1);
- spl_autoload_register(autoload2);
- //define autoload function
- function autoload1($class) {
- require __DIR__.'/'.$class.'.php';
- }
- function autoload2($class) {
- require __DIR__.'/'.$class.'.php';
- }
- $TestObj1 = new Test1();
- $TestObj2 = new Test2();
- echo $TestObj1->func1().'<br/>';
- echo $TestObj2->func2();
- ?>
这种方法会更先进一些,也是我们采用的最主要的方法。博主最近开发的项目使用的是ThinkPHP框架,就在框架的核心文件Think.class.php中找到它的自动载入函数,拷过来给大家看下。
- static public function start() {
- // 注册AUTOLOAD方法
- spl_autoload_register('Think\Think::autoload');
- }
- /**
- * 类库自动加载
- * @param string $class 对象类名
- * @return void
- */
- public static function autoload($class) {
- // 检查是否存在映射
- if(isset(self::$_map[$class])) {
- <a href="/tags.php/include/" target="_blank">include</a> self::$_map[$class];
- } elseif (false !== strpos($class,'\\')){
- $name = strstr($class, '\\', true);
- if(in_array($name,array('Think','Org','Behavior','Com','Vendor')) || is_dir(LIB_PATH.$name)){
- // Library目录下面的命名空间自动定位
- $path = LIB_PATH;
- }else{
- // 检测自定义命名空间 否则就以模块为命名空间
- $namespace = C('AUTOLOAD_NAMESPACE');
- $path = isset($namespace[$name])? dirname($namespace[$name]).'/' : APP_PATH;
- }
- $filename = $path . str_replace('\\', '/', $class) . EXT;
- if(is_file($filename)) {
- // Win环境下面严格区分大小写
- if (IS_WIN && false === strpos(str_replace('/', '\\', realpath($filename)), $class . EXT)){
- return ;
- }
- include $filename;
- }
- }elseif (!C('APP_USE_NAMESPACE')) {
- // 自动加载的类库层
- <a href="/tags.php/foreach/" target="_blank">foreach</a>(<a href="/tags.php/explode/" target="_blank">explode</a>(',',C('APP_AUTOLOAD_LAYER')) as $layer){
- if(<a href="/tags.php/substr/" target="_blank">substr</a>($class,-strlen($layer))==$layer){
- if(require_cache(MODULE_PATH.$layer.'/'.$class.EXT)) {
- return ;
- }
- }
- }
- // 根据自动加载路径设置进行尝试搜索
- foreach (explode(',',C('APP_AUTOLOAD_PATH')) as $path){
- if(import($path.'.'.$class))
- // 如果加载类成功则返回
- return ;
- }
- }
- }
更多的相关知识大家可以自行去搜索,或者查看相关手册.
Tags: PHP类 PHP自动载入
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)