Skip to content

Instantly share code, notes, and snippets.

@orther
Created March 27, 2011 16:47
Show Gist options
  • Save orther/889361 to your computer and use it in GitHub Desktop.
Save orther/889361 to your computer and use it in GitHub Desktop.
<?php
class Test {
function call ($method_name) {
// echo $method_name;
$this->{"call_".$method_name}();
}
private function call_cock () {
echo "DONG FOR DAZE!!!\n";
}
}
$t = new Test();
$t->call('cock');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment