i春秋線上挑戰詳細攻略-《你是會員嗎》
阿新 • • 發佈:2018-12-30
//接收引數 $m=safe_replace(safe_html(isset($_GET["m"]))) ? safe_replace(safe_html($_GET["m"])) : "content"; $c=safe_replace(safe_html(isset($_GET["c"]))) ? safe_replace(safe_html($_GET["c"])) : "index"; $f=safe_replace(safe_html(isset($_GET["f"]))) ? safe_replace(safe_html($_GET["f"])) : "init"; //判斷模組是否存在 if(!file_exists(MOD_PATH.$m)){ showmsg(C('module_not_exist'),'/'); } //判斷類檔案是否存在 if(!file_exists(MOD_PATH.$m."/".$c.".php")){ showmsg(C('class_not_exist'),'/'); } include MOD_PATH.$m."/".$c.".php"; //呼叫類 //判斷類是否存在 if(!class_exists($c)){ showmsg(C('class_not_exist'),'/'); } $p=new $c(); //例項化 $p->$f(); //呼叫方法