zend framework 跳转 博客分类: zend framework zend
程序员文章站
2024-03-20 08:14:28
...
一. render
不指定render
结果: {当前Module}/{当前Controller}/{当前Action}.phtml
$this->render('bar') ;
结果: {当前Module}/{当前Controller}/bar.phtml
二. forward
$this->_forward('bar') ;
结果: {当前Module}/{当前Controller}/bar
$this->_forward('bar', 'foo') ;
结果: {当前Module}/foo/bar
$this->_forward('bar', 'foo', 'hoge') ;
结果: hoge/foo/bar
$params = array(
'a' => '1',
'b' => '2'
) ;
$this->_forward('bar', 'foo', 'hoge', $params) ;
结果: /hoge/foo/bar/a/1/b/2
三. redirect
$this->_redirect('/hoge') ;
结果: /hoge
$this->_redirect('/hoge/foo') ;
结果: /hoge/foo
$this->_redirect('/hoge/foo/bar') ;
结果: /hoge/foo/bar
$this->_redirect('http://localhost/hoge/foo/bar') ;
结果: http://localhost/hoge/foo/bar
$this->_redirect('http://localhost/hoge/foo/bar?a=1&b=2') ;
结 果: http://localhost/hoge/foo/bar?a=1&b=2
不指定render
结果: {当前Module}/{当前Controller}/{当前Action}.phtml
$this->render('bar') ;
结果: {当前Module}/{当前Controller}/bar.phtml
二. forward
$this->_forward('bar') ;
结果: {当前Module}/{当前Controller}/bar
$this->_forward('bar', 'foo') ;
结果: {当前Module}/foo/bar
$this->_forward('bar', 'foo', 'hoge') ;
结果: hoge/foo/bar
$params = array(
'a' => '1',
'b' => '2'
) ;
$this->_forward('bar', 'foo', 'hoge', $params) ;
结果: /hoge/foo/bar/a/1/b/2
三. redirect
$this->_redirect('/hoge') ;
结果: /hoge
$this->_redirect('/hoge/foo') ;
结果: /hoge/foo
$this->_redirect('/hoge/foo/bar') ;
结果: /hoge/foo/bar
$this->_redirect('http://localhost/hoge/foo/bar') ;
结果: http://localhost/hoge/foo/bar
$this->_redirect('http://localhost/hoge/foo/bar?a=1&b=2') ;
结 果: http://localhost/hoge/foo/bar?a=1&b=2
推荐阅读
-
Zend Framework 低级bug--missing ) ZendEclipsePHP
-
Zend Engine解释 博客分类: 【tec】php zendphp
-
Zend Framework 视图中使用视图 博客分类: PHP zendphp
-
zend framework 分包 分层 分模块 modules 博客分类: zend framework zend
-
zend framework 跳转 博客分类: zend framework zend
-
PHP5环境下Zend Debugger安装配置详解 博客分类: php phpzend
-
zend framework 报错定义页面 博客分类: 关于zend framework zendfreemarker
-
Zend Framework 2的MVC工作流程 博客分类: 关于zend framework zend框架mvc
-
php之ZendFramewor篇(五)组件:Zend_Controller基础 博客分类: 【tec】php phpzend
-
zend studio debug安装和配置 博客分类: php zendstudio浏览器