0

如何在 cakephp 操作中检索视图和布局文件的绝对路径。我找不到有用的方法或属性

// in action
var_dump($this);

感谢

输出的愿望是

/home/sweb/www/cakeapp/app/View/Layout/mylayout.ctp
/home/sweb/www/cakeapp/app/View/Mycntl/myaction.ctp
4

1 回答 1

1

我会用它来创建一个完整的路径。

APP . 'View' . DS . 'Layout' . DS . $this->layout

这将为您输出类似的内容,

string '/Users/david/Sites/ExampleSite/app/View/Layout/default' (length=56)

为了获得视图,我会使用

APP . 'View' . DS . $this->modelClass . DS . $this->view
于 2013-05-15T10:28:01.357 回答