Home  >  Article  >  Backend Development  >  PHP中命名空间的引用

PHP中命名空间的引用

WBOY
WBOYOriginal
2016-06-23 13:29:31801browse

(1)在介绍引用之前要知道命名空间中几个术语的概念。

1)完全限定名称

任何PHP代码都可以引用完全限定名称,它是一个命名空间反斜线开头的标识符,如:

\c\root\sub1,\c\root\sub1\returnFunctionName()等。

2)限定名称

至少有一个命名空间分隔符的标识符,如sub1\returnClassName。

3)非限定名称

没有命名空间分割符的标识符,如returnFuctionName();


(2)使用use来引用命名空间


下面是root\sub1命名空间中的内容:



版权声明:本文为博主原创文章,未经博主允许不得转载。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn