Skip to content

Instantly share code, notes, and snippets.

@maeharin
Created January 4, 2013 05:53
Show Gist options
  • Save maeharin/4450251 to your computer and use it in GitHub Desktop.
Save maeharin/4450251 to your computer and use it in GitHub Desktop.
<?php
class C
{
public function foo() {
echo "foo";
}
}
$c = new C();
$method_name = 'foo';
$c->$method_name(); //関数名を変数にできる
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment