PHP 動的呼び出しメソッドのコード例は次のとおりです:
require_once showErrMsg.php;
$_action = (isset($_REQUEST[アクション])?$_REQUEST[アクション]:"");
if($_action!=null&&$_action!=){
if(function_exists($_action)){
eval("$_action();");
}その他{
die(showErrMsg ( "
gt;メソッド [".$_action."()] は現在の php ファイルに存在しません。"));
}
}
?>
関数 showErrMsg($strMsg){
return "".$strMsg."";
}
?>