PHP 动态调用方法实例代码
程序员文章站
2022-06-10 12:25:53
...
PHP 动态调用方法实例代码如下:
require_once showErrMsg.php;
$_action = (isset($_REQUEST[action])?$_REQUEST[action]:"");
if($_action!=null&&$_action!=){
if(function_exists($_action)){
eval("$_action();");
}else{
die(showErrMsg ( "
当前php文件中不存在方法[".$_action."()]。"));
}
}
?>
function showErrMsg($strMsg){
return "".$strMsg."";
}
?>
require_once showErrMsg.php;
$_action = (isset($_REQUEST[action])?$_REQUEST[action]:"");
if($_action!=null&&$_action!=){
if(function_exists($_action)){
eval("$_action();");
}else{
die(showErrMsg ( "
当前php文件中不存在方法[".$_action."()]。"));
}
}
?>
function showErrMsg($strMsg){
return "".$strMsg."";
}
?>
上一篇: 基于rman的坏块恢复
下一篇: php mysql 千万数据库 如何优化