Blogger Information
Blog 22
fans 1
comment 1
visits 22875
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php中的命名空间
forever浅笑
Original
858 people have browsed it

总结: php中的命名空间和子空间,相当于文件夹和文件夹下的文件夹区别与java的包 C#里的是一个道理,没啥好说的

实例

<?php
namespace test\space1;

class AA
{
    public function show() {
        echo 'this is test\space1';
    }
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

<?php
namespace test\space2;

class AA
{
    public function show() {
        echo 'this is test\space2';
    }
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

<?php
require './AA.php';
require './BB.php';

// 例用AA.php里的方法
use test\space1\AA;
//$aa = new \test\space1\AA();
$aa = new AA();
$aa->show();  // this is test\space1
echo '<hr>';
// 使用BB.php里的方法
use test\space2\AA as AA2;  // 同名必须用as关键字
$bb = new AA2();
$bb->show(); // this is test\space2

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post