Home > php教程 > php手册 > body text

PHP中一个文档中没有的特色[转自奥索]

WBOY
Release: 2016-06-21 09:12:46
Original
1553 people have browsed it

PHP中的面向对象功能支持 C++ 式的 :: 运算符号!!!
//孤狼:这个::在PEAR中可是频频出现,第一次见的时候搞的我莫名其妙 :)

这个特色文档没有任何说明,但是却有着很好的使用价值。

举一个简单的例子:
比如你以前有很多收集的函数库,你想转向 OOP 方式编程,但是还不能做到完全的封装。 这个特色提供你一个OOP风格的实现。

你定义一个 Util 类:

class Util {
//将所有的函数剪辑到这里
//这个类可以没有任何成员函数
}

然后在你原先使用函数的地方,比如 someFunction(), 修改成:
Util::someFunction(). 这对你需要封装,但是不需要任何成员函数非常有用。



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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template