redirectphp参数
❶ 跪求、在php中怎么用redirect实现页面跳转
1、thinkPHP 的Action类的redirect方法可以实现页面的重定向功能,redirect 重定向的通用语法为:edirect(url,params=array(),delay=0,msg='') //跳转到edit操作 $this->redirect('edit')。
2、//跳转到UserAction下的edit操作this->redirect('User/edit'),//跳转到Admin分组默认模块默认操作$this->redirect('Admin/')。
3、//跳转到Admin分组Index模块view操作$this->redirect('Admin-Index/view'),//跳转到Admin分组Index模块view操作,uid参数为1,延迟3秒跳转 $this->redirect('Admin-Index/view',array('uid'=>1)。
4、同项目分组中的URL访问一样,redirect 中跨分组跳转只是多了一个分组项目名称的概念,可以在 redirect 中使用路由,redirect 方法的参数用法和 U函数 的用法一致,可参考 U函数 生成URL地址相关部分内容。
❷ thinkphp中怎么实现跳转到其他网站
5.15 重定向
Action类的redirect方法可以实现页面的重定向功能。
redirect方法的参数用法和U函数的用法一致(参考上面的URL生成部分),例如:
上面的用法是停留5秒后跳转到News模块的category操作,并且显示页面跳转中字样,重定向后会改变当前的URL地址。
如果你仅仅是想重定向要一个指定的URL地址,而不是到某个模块的操作方法,可以直接使用redirect方法重定向,例如:
Redirect方法的第一个参数是一个URL地址。
5.14 页面跳转
在应用开发中,经常会遇到一些带有提示信息的跳转页面,例如操作成功或者操作错误页面,并且自动跳转到另外一个目标页面。系统的Action类内置了两个跳转方法success和error,用于页面跳转提示,而且可以支持ajax提交。使用方法很简单,举例如下:
Success和error方法都有对应的模板,并且是可以设置的,默认的设置是两个方法对应的模板都是:
模板文件可以使用模板标签,并且可以使用下面的模板变量:
$msgTitle:操作标题
$message :页面提示信息
$status :操作状态 1表示成功 0 表示失败 具体还可以由项目本身定义规则
$waitSecond :跳转等待时间 单位为秒
$jumpUrl :跳转页面地址
success和error方法会自动判断当前请求是否属于Ajax请求,如果属于Ajax请求则会调用ajaxReturn方法返回信息,具体可以参考后面的AJAX返回部分。
这些事thinkphp3.0手册上有的,自己下载手册看看
❸ php中如何使用_redirect()
首先redirect不是php内置的函数。而是thinkphp框架里的
点击函数可以看到最终是:
header('Location:XXX/');的过滤
使用方法可以查看手则
//跳转到edit操作
$this->redirect('edit');
//跳转到UserAction下的edit操作
$this->redirect('User/edit');
//跳转到Admin分组默认模块默认操作
$this->redirect('Admin/');
❹ thinkphp如何根据域名跳转到其他目录页面
ThinkPHP redirect 方法可以实现页面的重定向(跳转)功能。
redirect 方法语法如下:
$this->redirect(string url, array params, int delay, string msg)
参数说明:
参数
说明
url
必须,重定向的 URL 表达式。
params
可选,其它URL参数。
delay
可选, 重定向延时,单位为秒。
msg
可选,重定向提示信息。
ThinkPHP redirect 实例
在 Index 模块 index 方法中,重定向到本模块的 select 操作:
classIndexActionextendsAction{
publicfunctionindex(){
$this->redirect('select',array('status'=>1),3,'页面跳转中~');
}
}
//不延时,直接重定向
$this->redirect('select',array('status'=>1));
//延时跳转,但不带参数,输出默认提示
$this->redirect('select','',3);
//重定向到其他模块操作
$this->redirect('Public/login');
//重定向到其他分组
$this->redirect('Admin-Public/login');
❺ thinkphp内核程序,无法重定向
ThinkPHP redirect 方法
ThinkPHP redirect 方法可以实现页面的重定向(跳转)功能。redirect 方法语法如下:
$this->redirect(string url, array params, int delay, string msg)
参数说明:
参数
说明
url 必须,重定向的 URL 表达式。
params 可选,其它URL参数。
delay 可选, 重定向延时,单位为秒。
msg 可选,重定向提示信息。
ThinkPHP redirect 实例
在 Index 模块 index 方法中,重定向到本模块的 select 操作:
class IndexAction extends Action{
public function index(){
$this->redirect('select', array('status'=>1), 3, '页面跳转中~');
}
}
重定向后得到的 URL 可能为ex.php/Index/select/status/1
由于该方法调用了 U 函数来生成实际的 URL 重定向地址,因此重定向后的 URL 可能因配置不同而有所不同:
隐藏了入口文件 index.php 的
5idev.com/Index/select/status/1
隐藏了入口文件 index.php 且设置了伪静态的
hom/Index/select/status/1.html
一些常用的 redirect 重定向例子:
// 不延时,直接重定向
$this->redirect('select', array('status'=>1));
// 延时跳转,但不带参数,输出默认提示
$thi www.hbbz08.com s->redirect('select', '', 3);
// 重定向到其他模块操作
$this->redirect('Public/login');
// 重定向到其他分组
$this->redirect('Admin-Public/login');
提示: 1.当延时跳转时,必须输入 params 参数(可以为空),也就是 delay 必须出现在第 3 位上。
2.如果发现跳转后的 URL 有问题,由于 redirect 方法调用 U 方法来生成跳转后的地址,这时候可以测试一下 U 方法生成的地址是否正确,再检查一下系统配置。
3.如果不想使用 U 方法生成跳转地址,可以直接使用 PHP header 函数或 $this->redirect 的原型函数 redirect(string url, int delay, string msg),注意该 url 是个绝对地址,具体参见 PHP header 函数。
redirect 重定向与 success/error 跳转的区别
•redirect 是使用的 PHP header 重定向,而 success/error 是使用的 html meta http-equiv='Refresh' 属性跳转。
•redirect 无模板页面,输出的提示信息是直接在函数内 echo 输出的,而 success/error 有对应的模板。
•redirect 与 success/error 都可以实现页面的跳转,只是 redirect 可以无延时重定向,具体采用哪种视具体情况而定。
❻ PHP中$this->redirect('item/item/proid/11')什么意思
ThinkPHP redirect 方法是实现页面的重定向(跳转)
redirect 方法语法如下:
$this->redirect(stringurl,arrayparams,intdelay,stringmsg)
参数说明:
参数
说明
url
必须,重定向的 URL 表达式。
params
可选,其它URL参数。
delay
可选, 重定向延时,单位为秒。
msg
可选,重定向提示信息。
ThinkPHP redirect 实例
在 Index 模块 index 方法中,重定向到本模块的 select 操作:
classIndexActionextendsAction{
publicfunctionindex(){
$this->redirect('select',array('status'=>1),3,'页面跳转中~');
}
}
❼ thinkphp5 重定向的时候是否能带参数
class IndexAction extends Action{
public function index(){
$this->redirect('select', array('status'=>1), 3, '页面跳转中~');
}
}
❽ thinkphp5 redirect跳转
重定向
hinkController类的redirect方法可以实现页面的重定向功能。
redirect方法的参数用法和Url::build方法的用法一致(参考URL生成部分),例如:
//重定向到News模块的Category操作$this->redirect('News/category', ['cate_id' => 2]);
上面的用法是跳转到News模块的category操作,重定向后会改变当前的URL地址。
或者直接重定向到一个指定的外部URL地址,例如:
//重定向到指定的URL地址 并且使用302$this->redirect('http://thinkphp.cn/blog/2',302);
可以在重定向的时候通过session闪存数据传值,例如
$this->redirect('News/category', ['cate_id' => 2], 302, ['data' => 'hello']);
使用redirect助手函数还可以实现更多的功能,例如可以记住当前的URL后跳转
redirect('News/category')->remember();
需要跳转到上次记住的URL的时候使用:
redirect()->restore();
参考手册:thinkphp重定向
❾ PHP重定向次数过多问题redirect
header()是php自带函数 Redirect()是自定义方法, 你看看是不是因为你没有定义Redirect方法。
❿ php页面带参数跳转求助
你好,你这个只是网址跳转 !只需修改访问网址即可,不需修改代码