php 命名空间(namespace)原理与用法实例小结
程序员文章站
2023-01-04 10:49:47
本文实例讲述了php 命名空间(namespace)原理与用法。分享给大家供大家参考,具体如下:
命名空间一个最明确的目的就是解决重名问题,php中不允许两个函数或者类出现相同的名字...
本文实例讲述了php 命名空间(namespace)原理与用法。分享给大家供大家参考,具体如下:
命名空间一个最明确的目的就是解决重名问题,php中不允许两个函数或者类出现相同的名字,否则会产生一个致命的错误。这种情况下只要避免命名重复就可以解决,最常见的一种做法是约定一个前缀,也可以采用命名空间的方式解决
testspace.php
<?php namespace demo\test; //声明一个命名空间demo class test1 { static function test() { return "my class name demo1"; } function test1() { return "2222222222222222222b"; } }
模式一 直接实例该类
index1.php
require("testspace.php"); $ms1 = new \demo\test\test1(); echo $ms1->test1() . "<br />\n"; echo \demo\test\test1::test();
模式二 use 载入该类
index2.php
require("testspace.php"); use demo\test\test1; //导入命名空间demo\test下的tese1类 $ms2 = new test1(); echo $ms2->test1() . "<br />\n"; echo test1::test();
模式三 use载入命名空间
index3.php
use demo\test; //载入命名空间demo\test 这一层级 $ms3 = new test\test1(); echo $ms3 ->test1() . "<br />\n"; echo test\test1::test();
模式四
index4.php
use demo\test as test; $ms3 = new test\test1(); echo $ms3 ->test1() . "<br />\n"; echo test\test1::test();
至此 thinkphp 3.2版本中我们看到的
namespace home\controller; use think\controller;
namespace 声明的是该文件的命名空间;
use 载入在think命名空间下的controller 类
tip : controller 类 位于 thinkphp/library/think/controller.class.php
上一篇: 基于Python制作一个文件去重小工具
下一篇: 鱼腥草怎么喝,有什么作用呢