当前位置:Gxlcms > PHP教程 > php动态调用方法

php动态调用方法

时间:2021-07-01 10:21:17 帮助过:11人阅读

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."";
}
?>

人气教程排行