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
AppController.php:
App::import('Lib', 'GlobalMethods'); class AppController extends Controller { }