为了账号安全,请及时绑定邮箱和手机立即绑定

按照老师的代码打,老是报错是怎么回事

https://img1.sycdn.imooc.com//5b3a470a000102b613660729.jpg

<?php


require_once('function.php');


$controllerAllow=array('test','index');


$methodAllow=array('test','index','show');


$controller=in_array($_GET['controller'],$controllerAllow)?daddslashes($_GET['controller']):'index';

$method=in_array($_GET['method'],$methodAllow)?daddslashes($_GET['method']):'index';

C($controller,$method);

?>

<?php

function C($name,$method){

require_once('/libs/Controller/' .$name. 'Controller.class.php');//引入controller类

eval('$obj=new '.$name.'Controller();$obj->'.$method.'();');

function M($name){

require_once('/libs/Model'.$name.'Model.class.php');

eval('$obj=new '.$name.'Model;');

return $ogj;

}

function V($name){

require_once('/libs/View'.$name.'View.class.php');

eval('$obj=new' .$name.'View();');

return $obj;

}

//转义字符,过滤非法字符

function daddslashes($str){

return(!get_magic_quotes_gpc())?addslashes($str):$str;

}

}

?>


正在回答

2 回答


http://img1.sycdn.imooc.com//5b3b611b00018de103390236.jpg
这是文件目录

0 回复 有任何疑惑可以回复我~

你文件的位置确定没错?提示找不到目录文件

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

按照老师的代码打,老是报错是怎么回事

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信