学习ThinkPHP3.2.2:video8,_404函数已废除,用E函数替代

时间:2022-10-29 11:47:01

直接浏览:http://localhost/wish/index.php/home/index/handle

这时候没有post参数,handle方法可以这样处理:

if (!IS_POST) E('信息录入错误',25);  // 显示出错信息


也可以这样处理:

$url=U('index', '', '', true);

if (!IS_POST) redirect($url, $time=3, $msg='will redirect in 5 seconds...'); // 五秒内跳转到新页面


或者用这样的方式,合法跟非法的操作都会有提示:

if (!IS_POST) {

    $url=U('index', '', '', true);

    redirect($url, $time=3, $msg='will redirect in 5 seconds...');

}else{

    p($_POST);// p函数,打印数组

}