- 關閉 layout 的輸出
在 Action 裡面 return 自訂的 ViewModel$view = new ViewModel(); //要先 use Zend\View\Model\ViewModel; $view->setTerminal(true); return $view;
- 關閉 view render 的輸出
在 Action 裡面 return falsereturn false;
- 同時關閉 layout 和 view 的輸出
在 Action 裡面 return responsereturn $this->response;
- toRoute 網址加上 query (get) 參數
http://stackoverflow.com/questions/15944787/how-to-set-query-parameter-with-redirect#/login/aa?foo=bar $this->redirect()->toRoute( 'login', array( 'action' => 'aa' ), array('query' => array( 'foo' => 'bar' )) );
- 取得最終原始的SQL語法
http://blog.csdn.net/wang_quan_li/article/details/41774203
http://stackoverflow.com/questions/14986069/zend-framework-2-zend-db-sql-sql-preparestatementforsqlobject-vs-getsqlstringf$sql = new \Zend\Db\Sql\Sql($adapter); var_dump($sql->getSqlStringForSqlObject($select));
相關連結:
Zend Framework 常用備忘
參考:
How to disable render view in zend framework 2?
沒有留言:
張貼留言