Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Created March 6, 2016 10:27
Show Gist options
  • Save ehzawad/7e3bc7f820dc203baaa5 to your computer and use it in GitHub Desktop.
Save ehzawad/7e3bc7f820dc203baaa5 to your computer and use it in GitHub Desktop.
<?php
class foo {
public $value = 42;
public function &getValue(){
return $this->value;
}
}
$obj = new foo;
$myValue = &$obj->getValue();
echo $myValue;
$obj->value = 3;
echo $myValue;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment