php之static

static是属于类本身的,是实例化对象所共有的

使用形式:

static $val;
static function func(){}

调用形式:

类名::$val;
类名::func();

Posted in 未分类

发表评论