Skip to content

Instantly share code, notes, and snippets.

@MugeSo
Created January 17, 2012 10:06
Show Gist options
  • Save MugeSo/1626063 to your computer and use it in GitHub Desktop.
Save MugeSo/1626063 to your computer and use it in GitHub Desktop.
$hoge.foo(); on php without any errors.
error_reporting(E_ALL);
function foo(){}
class Hoge{ public function __toString(){return "a";}}
$hoge = new Hoge();
$hoge.foo();// Success!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment