时间:2021-07-01 10:21:17 帮助过:16人阅读
使用形式:
static $val;
static function func(){}
调用形式:
类名::$val;
类名::func();
classsta{public$temp = 123;
static$type = 100;
staticfunctionstat(){$me = newself;
//静态方法中不能使用this关键字echo'common val:'.$me->temp."";
echo'static val:'.sta::$type."
";
echo'static val:'.$me::$type."
";
//静态方法中亦不可调用普通方法
}
}
echo'sta:'.sta::$type."";
echo sta::stat();
$a = new sta();
echo'a:'.$a::$type."";
$b = new sta();
$a::$type = 200;
echo'b:'.$b::$type."";
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了PHP之static,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。