yaf 視圖

http://yaf_demo.com/index/index/show

application/views/index/show.phtml


http://yaf_demo.com/user/user/index

application/modules/User/views/user/index.phtml


return false 不渲染視圖,默認渲染

在bootstrap.php 全局禁用

_initView

$dispatcher::getInstance()->disableView();


$msgTpl = $this->getView()->render('index/show.phtml');

echo $msgTpl;


$this->getView()->display('index/show.phtml');


controller  init() 

$this->getView()->setScriptPath(APPLICATION_PATH.'/template');

application.view.ext = "phtml"

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章