Skip to content

Instantly share code, notes, and snippets.

@tal
Created August 19, 2013 20:53
Show Gist options
  • Save tal/6274066 to your computer and use it in GitHub Desktop.
Save tal/6274066 to your computer and use it in GitHub Desktop.
php> class Foo {}
php> $foo = new Foo
php> $foo->bar='bar'
php> =$foo->BAR
/usr/lib/python2.4/site-packages/phpsh/phpsh.php(578) : eval()'d code:1: Undefined property: Foo::$BAR
php> =$foo->bar
"bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment