问答详情
源自:4-5 [MVC实例]入口文件功能

function daddslashes($str)这个不加就不能用是何原因呀

//我的index.php的代码,我在一点点分析老师的做法,去找原因,理逻辑。

我的inde.php代码如下,我在屏蔽掉daddslashes的情况下,就不好用了。

require_once('function.php');

//$controllerAll = array('test','index');

//$methodAll = array('test','index','show');

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

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

$controller = $_GET['controller'];

$method = $_GET['method'];

C($controller, $method);


提问者:Winds_Python 2015-07-19 11:53

个回答

  • 獵遍天下
    2015-07-20 23:02:38

    $controller = $_GET['controller'];

    $method = $_GET['method'];

    你直接打印出来看看,你这2个变量是否有值