fork download
  1. <?php
  2. class foo {
  3. public $value = 42;
  4.  
  5. public function &getValue() {
  6. return $this->value;
  7. }
  8. }
  9.  
  10. $obj = new foo;
  11. $myValue = &$obj->getValue();
  12. $obj->value = 2;
  13. echo $myValue;
  14.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
2