码迷,mamicode.com
首页 > Web开发 > 详细

PHP之autoload理解

时间:2015-05-11 10:23:03      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

举个例子就可以看懂了:

同一目录中有2个文件index.php和test.php,在test.php中定义一个test类。

test.php

<?php

class  test{

    public function __construct()
    {
        echo ‘hello world‘;
    }

}

index.php

<?php


function __autoload($name)
{
    require "$name.php";
}

$test = new test();

运行脚本index.php,发现程序正常输出了‘hello world’。可是index.php中并没有定义test类,这是因为创建类实例的时候,PHP会自动优先调用“__autoload()”方法,并且会把类名作为参数传递给autoload方法。

这样,我们就可以在autoload方法中将要使用的类文件“require”过来。

PHP之autoload理解

标签:

原文地址:http://www.cnblogs.com/shaoyikai/p/4493638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!