CakePHP - 在我的应用程序结构中放置自定义实用程序类的最佳位置在哪里?
我正在制作实用程序类,它将提供帮助操作字符串的通用方法。我可能还想要一个用于数组、数学函数等的组件。这些应该是组件吗?供应商?我可以将它们制作成某种供应商包吗?
I am making utility classes that will provide general methods for helping manipulate strings. I may also want one for arrays, math functions, etc. Should these be components? Vendors? Could I maybe make these into some sort of vendor package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它们是通用的独立库,不依赖于请求周期的任何特定步骤(控制器、模型、视图),请将它们放在
app/libs/
中。您可以使用App::import('Lib', 'Foo')
导入它们。就我个人而言,我总是使用
bootstrap.php
中定义的两个或三个方便的数组函数,这是放置少量全局内容的另一个地方。If they're general standalone libraries not tied to any particular step of the request cycle (controller, model, view), put them in
app/libs/
. You can import them usingApp::import('Lib', 'Foo')
.Personally I have two or three handy array functions I always use defined in
bootstrap.php
, which is another place to put a small amount of global stuff.