Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目中有一个库。当我想将此代码与此代码一起使用时:
require('../Plugin/Utils/DateTimeUtil.php');
它说不存在这样的文件。我的 cakephp 1s 2.3 我该怎么办?
cakephp 中的路由与纯 php 不同。我有类似的东西。首先你应该找到包含这段代码的路径插件文件夹
$pluginPath = App::path('Plugin');
然后它返回一个数组,其中包含 0 索引中的插件文件夹的路径。所以你应该像这样返回值:
require($pluginPath[0] . 'Utils' . DS . 'DateTimeUtil.php');
您可以使用斜杠代替 DS。DS 是 DIRECTORY_SEPRATOR。