PHP 动态调用方法实例代码
来源:未知 责任编辑:智问网络 发表时间:2013-09-02 11:47 点击:次
PHP 动态调用方法实例代码如下:
<?php
require_once showErrMsg.php;
$_action = (isset($_REQUEST[action])?$_REQUEST[action]:"");
if($_action!=null&&$_action!=){
if(function_exists($_action)){
eval("$_action();");
}else{
die(showErrMsg ( "<br>当前php文件中不存在方法[<b>".$_action."()</b>]。"));
}
}
?>
<?php
function showErrMsg($strMsg){
return "<font color=red>".$strMsg."</font>";
}
?>
<?php
require_once showErrMsg.php;
$_action = (isset($_REQUEST[action])?$_REQUEST[action]:"");
if($_action!=null&&$_action!=){
if(function_exists($_action)){
eval("$_action();");
}else{
die(showErrMsg ( "<br>当前php文件中不存在方法[<b>".$_action."()</b>]。"));
}
}
?>
<?php
function showErrMsg($strMsg){
return "<font color=red>".$strMsg."</font>";
}
?>
相关新闻>>
- 发表评论
-
- 最新评论 更多>>