call_user_funcの小さなメモ
<?php function test($t, $s){ echo $t.PHP_EOL; echo $s.PHP_EOL; } call_user_func("test", "2", "3");