如何在cakephp操作中检索视图和布局文件的绝对路径。 我无法在
中找到有用的方法或属性// in action
var_dump($this);
感谢
欲望出局是
/home/sweb/www/cakeapp/app/View/Layout/mylayout.ctp
/home/sweb/www/cakeapp/app/View/Mycntl/myaction.ctp
答案 0 :(得分: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