成员函数的静态变量的范围

时间:2012-04-19 03:41:15

标签: php instance scope static-variables member-functions

如果我在一个类的(非静态)成员函数中声明了一个静态变量,它对该类的每个实例是静态的,还是在所有实例中是静态的?对不起,如果答案显而易见,我无法在任何地方找到答案。

编辑:

我接受了zerkms的回答,但这是另一个例子:

<?php

class X {
  public function fun($bar) {
    static $foo = null;
    if ($foo != null) print $foo . "<br/>";
    $foo = $bar;
  }
}

$x1 = new X();
$x1->fun(42);

$x2 = new X();
$x2->fun(123);
$x2->fun(666);

?>

输出:
42个
123

1 个答案:

答案 0 :(得分:6)

  1. 检查
  2. 需要几分钟
  3. 它在所有实例中共享
  4. http://ideone.com/Cq2s6