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.
我正在使用 symfony 1.0.6,我的目录结构如下:
应用程序/前端/模块/新闻/动作/action.class 应用程序/jobseeker/module/profile/action/action.class
应用程序/前端/模块/新闻/动作/action.class
应用程序/jobseeker/module/profile/action/action.class
在求职者应用程序的新闻模块中,我有一个名为函数的函数Docx2text() { },我想在求职者应用程序的配置文件模块中使用它。
Docx2text() { }
如何在不将函数重定位到 Utils 或任何其他静态函数的情况下做到这一点。
它们是在同一个应用程序上还是不同的?因为首先你说他们在求职者和前端,然后两者都在求职者中?
我认为在模型操作上使用全局函数不是一个好主意。为什么不能使用静态或将其移动到 Utils 类?