Skip to content

Instantly share code, notes, and snippets.

@kentaro
Created September 20, 2012 02:18
Show Gist options
  • Save kentaro/3753583 to your computer and use it in GitHub Desktop.
Save kentaro/3753583 to your computer and use it in GitHub Desktop.
<?php
class Foo {
public function __call($name, $arguments) {
echo $name . "\n";
}
public function foo() {
echo "fooooo\n";
}
}
$obj = new Foo();
$obj->foo();
$obj->bar();
# fooooo
# fooooo
# bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment