xml生成中cakephp的目录

时间:2011-04-28 04:08:47

标签: cakephp cakephp-1.3

我在img / files目录

中的cakephp中上传了xml文件

APP-> webroot->文件 - > myfile.xml中

我想从我的控制器这样调用它

$ file =“/ files / Myfile.xml”;

我不确定这是否是来自控制器的正确路径 当然,控制器在app-> controllers-> my_controller

感谢

1 个答案:

答案 0 :(得分:3)

使用其中一个CakePHP Core Configuration Constants

例如

WWW_ROOT

$file = WWW_ROOT . "files/MyFiles.xml";