php 静态类和方法
By admin
- One minute read - 31 words<?php<br /> /*<br /> //静态属性 或静态方法不需要所在类被实例化就可以使用<br /> //使用方法:类名::静态方法名(静态属性名)<br /> //例子:static.php<br /> */<br /> class Math<br /> {<br /> public static $PI=3.14; //定义静态属性
//public $PI=3.14; //静态方法不能调用非静态的属性
`//定义一个静态方法,求两个数中的最大值
来源:<a href="http://blog.chinaunix.net/u1/51625/showart_406076.html" target="_blank">http://blog.chinaunix.net/u1/51625/showart_406076.html</a>