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.
我需要在不使用供应商的情况下将外部 API 导入 cakephp。在同一个服务器上,我有以下文件夹:
wwww/myapi/myclass.php wwww/web/app/vendors
myapi可以从其他应用程序中使用,这就是为什么我不想将它包含在 cakephp 文件夹中。
myapi
您是否尝试过 include('../../../myapi/myclass.php); ? 此外,如果它不是一个大文件,您可以将其复制到供应商或您的 webroot 文件夹中......
使用符号链接。
ln -s www/myapi/myclass.php www/web/app/vendors/myapi/myclass.php