您现在的位置是:首页 > PHP技术PHP技术
Thinkphp3.1.3中的redirect详解
2019-04-27【PHP技术】1938 人已围观
简介 页面跳转是php编程中常用的方法,今天说说thinkphp3.1.3中的redirect.tp跳转有success和error这二个参...
页面跳转是php编程中常用的方法,今天说说thinkphp3.1.3中的redirect.
tp跳转有success和error这二个参数有页面提示. 有时需要静默跳转redirct
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');
关注宁波网站建设博客,更多精彩分享,敬请期待!
Tags:
很赞哦! ()
下一篇:百度浏览器宣布不在更新
相关文章
随机图文
-
Thinkphp5.1 session的使用
某项目小编著电脑本地测试无误,上传到服务器后出现致命错误: Class 'thinkFacadeSession' not... -
ThinkPHP6.0RC2版本发布啦
一早打开网站看到ThinkPHP6.0RC2版本发布——架构升级、精简核心! 厉害,学的比开发的还要慢! 我们在刚适应从tp3.X到tp5.... -
网站安全代码thinkphp3.1密码强度检测
/** *检查密码复杂度 */ publicfunctioncheckPassword($pwd){ if($pwd==null){... -
Thinkphp5.1.30 分页think\paginator\driver\Bootstrap has no effect解决
Tp5.1.30对以往版本有很大的改进。$list = Db:name('表名')->paginate(10);返...