理解php5中static和const关键字用法
时间:2021-07-01 10:21:17
帮助过:13人阅读
- class Counter
- {
- private static $count = 0;//定义一个静态属性
- const VERSION = 2.0;//定义一个常量
- //构造函数
- function __construct(){
- self::$count++;
- }
- //析构函数
- function __destruct(){
- self::$count--;
- }
- //定义一个静态的方法
- static function getCount(){
- return self::$count;
- }
- }
- //创建一个实例
- $c = new Counter();
- //执行打印
- print( Counter::getCount(). "
" ); //使用直接输入类名来访问静态方法Counter::getCount - //打印类的版本
- print( "Version useed: " .Counter::VERSION. "
" ); - ?>
|