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.
假设我有一个带有随机字符串方法的 StringerHelper(Component|Helper|Behaviour).php 类。
我可能需要在控制器、模型和视图中使用它。如何在需要的地方加载它?
谢谢!
你可以把它变成一个 lib 并把它放进app/Lib. 如果它只是辅助方法,请将方法设为静态。
app/Lib
对于 2.x
app/Lib/Stringer.php App::uses('Stringer', 'Lib');
对于 1.x,命名有点不同
app/lib/stringer.php App::import('Lib', 'Stringer');
用法:
Stringer::myHelperMethod([args]);