欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php框架 - php的命名空间使用是否省去了include和require的作用

程序员文章站 2022-05-05 20:14:36
...
例如2个类文件
a.php
namespace A;
class Test1{
}

b.php
namespace B;
class Test2{

}

那么在c.php里怎么写呢?是写

include('a.php');
$c = new \A\Test1()

还是直接

use A;
$c = new \A\Test1()

回复内容:

例如2个类文件

a.php
namespace A;
class Test1{
}

b.php
namespace B;
class Test2{

}

那么在c.php里怎么写呢?是写

include('a.php');
$c = new \A\Test1()

还是直接

use A;
$c = new \A\Test1()

没有,继续要include 只是降低了不同文件中 new xxxxx 里面 xxxx 命名冲突的可能性

命名空间只是解决了重名问题,同样需要引入文件。当然也可以使用composer来进行包管理

楼主,看下psr-4和psr-0。
文件的加载和命名空间是两回事。不使用命名空间一样可以实现自动加载。
关于自动加载可以看下:

spl-autoload-register

两者根本不是一个概念。include是引入文件,命名空间是封装,对类分类
c.php写法:

include('a.php');
use A\Test1;
$c = new Test1();
相关标签: php php框架