迷路的小菇凉吧 关注:46贴子:1,592
  • 4回复贴,共1

静态变量/方法

只看楼主收藏回复

class test{
public static $a=1;
public $b=1;
public function a(){
self::$a++;
}public function b(){
$this->b++;}}
$x=new test();
$y=new test();
echo test::$a; //1
$x->a();echo test::$a //2
$y->a();echo test::$a //3
echo $x->b; //1
$x->b();echo $x->b; //2
$y->b();echo $x->b; //2


1楼2014-04-29 14:01回复
    --承诺都是不可靠的东西,只有白纸黑字写下来才有效


    来自Android客户端2楼2014-07-26 20:10
    回复
      --世界上最遥远的距离,是我亲手划开的。


      来自Windows8客户端3楼2014-07-30 05:04
      回复
        萌萌的新人路过~


        来自Android客户端4楼2014-07-31 20:41
        回复
          楼主你太正常了,我不想跟你说话


          来自WindowsPhone客户端5楼2014-08-08 04:04
          回复