php之static 01 1月 by test31297505 static是属于类本身的,是实例化对象所共有的 使用形式: static $val; static function func(){} 调用形式: 类名::$val; 类名::func();