Yaf_View_Simple::getScriptPath
(Since Yaf 1.0.0.13)
public string Yaf_View_Simple::getScriptPath( void );
获取当前的模板目录
此方法不需要参数
成功返回目前的视图目录, 失败返回NULL
例 11.61. Yaf_View_Simple::getScriptPath 的例子
<?php class IndexController extends Yaf_Controller_Abstract { public funciton indexAction() { echo $this->getView()->getScriptPath(); } } ?>