您的位置:首页 > 编程语言 > PHP开发

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

2015-10-03 11:32 507 查看
直接浏览: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函数,打印数组

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: