Loading Vendor Files in CakePHP 2.0(在 CakePHP 2.0 中加载供应商文件)
问题描述
我目前正在将我们的一个项目升级到 CakePHP 2.0.不幸的是,代码的第一行"出现了问题,我找不到解决该问题的方法.
I'm currently upgrading one of our projects to CakePHP 2.0. Unfortunately the "first line" of code makes problems, and I can't find a solution to that problem.
在 CakePHP 1.3 中,我在定义 AppController 类之前有一个
App::import("Vendor", "facebook");
语句.引用的文件位于 /app/vendors/facebook/facebook.php
下(并包括 base_facebook.php
文件).
In CakePHP 1.3 I had an App::import("Vendor", "facebook");
statement right before the AppController
class gets defined. The referenced file is located under /app/vendors/facebook/facebook.php
(and includes itself the base_facebook.php
file).
根据此处描述的文件命名和类加载,我尝试了许多不同的方法将文件包含在 CakePHP 2.0 中:CakePHP 2.0 文件命名和类加载变化
I tried many different ways to include the file now in CakePHP 2.0 according to the File naming and class loading described here: File naming and class loading changes in CakePHP 2.0
我将路径重命名为app/Vendor/Facebook/Facebook.php
,或app/Vendor/Facebook/facebook.php
,并尝试了以下方法:>
I renamed the path to app/Vendor/Facebook/Facebook.php
, or app/Vendor/Facebook/facebook.php
, and tried following methods:
App::uses("Facebook", "Vendor/Facebook");
App::uses("Facebook", "Facebook");
App::uses("Facebook", "Vendor/Facebook/Facebook.php");
App::uses("Facebook", "Vendor");
有没有人找到引用供应商文件的方法?由于延迟加载,上述方法不会触发错误/警告,因此调试它有点烦人......
Has anyone find a way to reference a vendor file yet? Because of the lazy loading the methods above do not fire an error/warning, so it's kind of annoying to debug this...
推荐答案
在 CakePHP 中无法使用 App::uses()
加载供应商,这是因为 CakePHP 不能期望外部库遵循相同有关文件夹和文件命名的标准.您仍然可以像在框架的 1.3 版中那样使用 App::import('Vendor', ...)
.
Vendors cannot be loaded using App::uses()
in CakePHP, this is because CakePHP cannot expect external libraries to follow the same standards regarding folder and file naming. You can still use App::import('Vendor', ...)
as you did in version 1.3 of the framework.
现在,如果您考虑一下,为供应商使用 App::import()
有点愚蠢.它只是 require_once()
的一个昂贵、冗长且非常愚蠢的包装器.
Now, using App::import()
for vendors is kind of silly, if you think about it. It is just an expensive, verbose and very silly wrapper for require_once()
.
在 2.0 中,我们实际上鼓励人们为他们的供应商库使用 require 或 require_once.您可以使用 App::path('Vendor')
或仅使用 APP 来获取 Vendor 文件夹的位置.'小贩' .DS
.
In 2.0, we actually encourage people to use require or require_once for their Vendor libraries. You can get the location of the Vendor folder using App::path('Vendor')
or just APP . 'Vendor' . DS
.
这篇关于在 CakePHP 2.0 中加载供应商文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 CakePHP 2.0 中加载供应商文件
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01