Skip to content

Instantly share code, notes, and snippets.

@ariscop
Created October 3, 2012 08:03
Show Gist options
  • Save ariscop/3825731 to your computer and use it in GitHub Desktop.
Save ariscop/3825731 to your computer and use it in GitHub Desktop.
Php fun
class a {
protected $foo = "foo";
function foo() {
print($this->foo);
}
function a() {
$this->foo = "bar";
$this->foo();
}
};
new a();
//output: bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment