【发布时间】:2015-05-29 12:03:05
【问题描述】:
我正在使用 cakephp-3.0
在插件的一个组件中,我想在插件 webroot 中加载一个 XML 文件。
simplexml_load_file('RangeMessage.xml')
找不到文件。使用
调试路径debug(realpath(''));
说,实际目录是/path/to/app/webroot。
然而,我的 xml 文件位于 /path/to/app/plugins/myPlugin/webroot
那么如何在不使用绝对路径的情况下找到文件呢?
【问题讨论】:
标签: cakephp plugins components cakephp-3.0