PHP引用静态变量

时间:2011-02-15 13:28:23

标签: php class reference static-members static-variables

我不确定这在PHP中是否可行,但这是我尝试做的。我的班级中有一个静态变量,我想在课堂外作为参考。

class Foo {

  protected static $bar=123;

  function GetReference() {

    return self::&$bar; // I want to return a reference to the static member variable.
  }

  function Magic() {

    self::$bar = "Magic";
  }
}

$Inst = new Foo;
$Ref = $Inst->GetReference();
print $Ref; // Prints 123
$Inst->DoMagic();
print $Ref; // Prints 'Magic'

有人可以确认是否可以在所有或其他解决方案中实现相同的结果:

  • 变量必须是静态的,因为类Foo是基类,并且所有派生都需要访问相同的数据。
  • HTML需要访问类引用数据,但不能在没有setter方法的情况下设置它,因为类需要知道何时设置变量。

我想它总能通过在课堂外宣布的全局变量和一些编码规则作为紧急解决方案来解决。

//谢谢

[编辑]
是的,我使用PHP 5.3.2

1 个答案:

答案 0 :(得分:3)

PHP文档提供了一个解决方案:Returning References

<?php
class foo {
    protected $value = 42;

    public function &getValue() {
        return $this->value;
    }
}

$obj = new foo;
$myValue = &$obj->getValue(); // $myValue is a reference to $obj->value, which is 42.
$obj->value = 2;
echo $myValue;