ThinkPHP中redirect用法分析_PHP
redirect 重定向的通用语法为:redirect(url,params=array(),delay=0,msg=''),假设当前为默认 HOME分组 Aritcle模块 insert操作,一些例子如下:
代码如下:
// 跳转到 edit 操作
$this->redirect('edit');
// 跳转到 UserAction下的edit 操作
$this->redirect('User/edit');
// 跳转到 Admin分组默认模块默认操作
$this->redirect('Admin/');
// 跳转到 Admin分组Index模块view操作
$this->redirect('Admin-Index/view');
// 跳转到 Admin分组Index模块view操作,uid参数为1,延迟3秒跳转
$this->redirect('Admin-Index/view', array('uid'=>1), 3,'页面跳转中~')
// 跳转到 其他OtherApp项目(非分组)的Admin项目分组User模块view操作
$this->redirect('OtherApp://Admin-User/view');
同项目分组中的URL访问一样,redirect 中跨分组跳转只是多了一个分组项目名称的概念.
提示:可以在 redirect 中使用路由,redirect 方法的参数用法和 U函数 的用法一致.可参考 U函数 生成URL地址相关部分内容.
希望本文所述对大家基于ThinkPHP的PHP程序设计有所帮助。
上一篇: 一起来啃书PHP看书,php看书
下一篇: php 正则只保留 汉字 字母 数字
推荐阅读
-
js中getter和setter用法实例分析
-
CodeIgniter配置之routes.php用法实例分析,codeigniterroutes
-
PHP中类的继承和用法实例分析,php实例分析
-
php中全等===和相等==的用法区别
-
php中的curl使用入门教程和常见用法实例_php实例
-
深入分析php中接口与抽象类的区别_PHP教程
-
php中return 、exit 、break和contiue四种结构的用法区别
-
php反射类ReflectionClass用法分析,reflectionclass用法_PHP教程
-
php支付宝接口用法分析_php技巧
-
ThinkPHP模板输出display用法分析,thinkphpdisplay_PHP教程