亲宝软件园·资讯

展开

PHP自动加载

qq_39688201 人气:0

PHP 命名空间(namespace)

PHP 命名空间(namespace)是在PHP 5.3中加入的,如果你学过C#和Java,那命名空间就不算什么新事物。 不过在PHP当中还是有着相当重要的意义。

PHP 命名空间可以解决以下两类问题:

虽然使用了命名空间,但我们在使用的时候也需要引入PHP文件,这就造成命名空间有时候不会减少我们的工作量,反而增加了我们的工作量。

自动加载

自动加载就是为了解决有了命名空间还让我们引入文件的问题。

文件结构:

自动加载有几种方式去实现:

1.__autoload()方法

index.php文件
function __autoload($class){
    if ($class) {
        $file = str_replace('\\', '/', $class);
        $file .= '.php';
        if (file_exists($file)) {
            include $file;
        }
    }
}
$class = new \app\Index();
$class->index();

2.spl_autoload_register()方法,如果用spl_autoload_register,autoload就失效了。

index.php文件
spl_autoload_register(function ($class) {
    if ($class) {
        $file = str_replace('\\', '/', $class);
        $file .= '.php';
        if (file_exists($file)) {
            include $file;
        }
    }
});
$class = new \app\Index();
$class->index();

3.使用composer的自动加载实现。

在文件的跟目录创建composer.json文件。"app\\": "app"指向命名空间的文件存放的地址

{
  "autoload": {
    "psr-4": {
      "app\\": "app"
    }
  }
}

使用命令composer install,生成vendor文件在根目录index.php 引入vendor/autoload.php

require 'vendor/autoload.php';

PSR-0

PHP的命名空间必须与绝对路径一致。

类名首字母大写。

除了入口文件之外,其他的PHP文件必须是一个类,不能有执行的代码。

加载全部内容

相关教程
猜你喜欢
用户评论