> Yaf中文手册 > Yaf_View_Simple::getScriptPath

名称

Yaf_View_Simple::getScriptPath

(Since Yaf 1.0.0.13)

public string Yaf_View_Simple::getScriptPath( void  );

获取当前的模板目录

参数
void

此方法不需要参数

返回值

成功返回目前的视图目录, 失败返回NULL

例子

例 11.61. Yaf_View_Simple::getScriptPath 的例子

     
     <?php
     class IndexController extends Yaf_Controller_Abstract {
        public funciton indexAction() {
         echo  $this->getView()->getScriptPath();
        }
     }
     ?>