程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> zend framework重定向方法小結

zend framework重定向方法小結

編輯:PHP綜合

本文總結了zend framework重定向的方法。分享給大家供大家參考,具體如下:

一. 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

四. 特殊情況

不使用 layout

結果:

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

不使用 view

結果:

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

更多關於zend相關內容感興趣的讀者可查看本站專題:《Zend FrameWork框架入門教程》、《php優秀開發框架總結》、《Yii框架入門及常用技巧總結》、《ThinkPHP入門教程》、《php面向對象程序設計入門教程》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》

希望本文所述對大家基於Zend Framework框架的PHP程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved