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.
我正在使用 CakePHP,以前只是将站点范围的方法存储在 AppController 中,但是当我从我的模型中调用它们时,它似乎并不正确。应该将它们放在我的 AppModel 中吗?
您可以将它们存储在 Lib 中:
App/Lib/GlobalMethods.php
应用控制器.php:
App::import('Lib', 'GlobalMethods'); class AppController extends Controller { }