服务器之家

服务器之家 > 正文

zend framework重定向方法小结

时间:2021-01-24 15:46     来源/作者:鹰眼

本文总结了zend framework重定向的方法。分享给大家供大家参考,具体如下:

一. render

不指定render

结果: {当前Module}/{当前Controller}/{当前Action}.phtml

?
1
$this->render('bar');

结果: {当前Module}/{当前Controller}/bar.phtml

二. forward

?
1
$this->_forward('bar');

结果: {当前Module}/{当前Controller}/bar

?
1
$this->_forward('bar', 'foo');

结果: {当前Module}/foo/bar

?
1
$this->_forward('bar', 'foo', 'hoge');

结果: hoge/foo/bar

?
1
2
3
4
5
$params = array(
 'a' => '1',
 'b' => '2'
);
$this->_forward('bar', 'foo', 'hoge', $params);

结果: /hoge/foo/bar/a/1/b/2

三. redirect

?
1
$this->_redirect('/hoge');

结果: /hoge

?
1
$this->_redirect('/hoge/foo');

结果: /hoge/foo

?
1
$this->_redirect('/hoge/foo/bar');

结果: /hoge/foo/bar

?
1
$this->_redirect('http://localhost/hoge/foo/bar');

结果: http://localhost/hoge/foo/bar

?
1
$this->_redirect('http://localhost/hoge/foo/bar?a=1&b=2');

结果: http://localhost/hoge/foo/bar?a=1&b=2

四. 特殊情况

不使用 layout

结果:

?
1
$this->_helper->layout()->disableLayout();

不使用 view

结果:

?
1
$this->_helper->viewRenderer->setNoRender();

希望本文所述对大家基于Zend Framework框架的PHP程序设计有所帮助。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
返回顶部