Home > Backend Development > PHP Tutorial > php命名空间使用总结

php命名空间使用总结

WBOY
Release: 2016-06-23 13:03:45
Original
1087 people have browsed it

从php5.3开始可以使用命名空间,命名空间是为了防止命名 空间的元素重复而使用的。命名空间的元素包括:class、function、const(从php5.3开始在类外部也可以用const定义常量,但是const与define的区别是:define定义的常量是全局常量,而const定义的是命名空间内的常量);

最简单的命名空间使用如下:

namespace a;function a(){    return 'aaaaaaaaaaaaaaaaa';    }namespace b;function b(){    return 'bbbbbbbbbbbbbbbbbbbbbb';    }echo \a\a();
Copy after login

注意:第一个命名空间定义前不能有任何php输出代码,为什么是第一个命名空间呢?因为一个文件中可以定义多个命名空间。上例中的含义是,在命名空间b中使用命名空间a中的元素(函数);

公共空间概念:什么是公共空间呢?公共空间就是我们未定义命名空间的代码,均在公共空间中,若在某个命名空间中使用公共空间的元素要用"\",如:echo \function();

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template