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

我在浏览器中会显示hello worldhello world。请问这是怎么回事?

<?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

class testController{

function show(){

$testModel = M('test');

$data = $testModel->get();

$testView = V('test');

$testView->display($data);

}

}

?>


正在回答

2 回答

function.php文件中老师写过的“C('test','show');”注释掉就可以了,我也有过同样的问题。

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

应该是在哪里执行过一次show()方法了

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

举报

0/150
提交
取消

我在浏览器中会显示hello worldhello world。请问这是怎么回事?

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