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.
クラス Util のようなカスタム クラスをいくつかの静的関数と一緒にどこにどのように追加する必要がありますか? そして、これらを autoloader に追加する方法は?
カスタム クラスはapp/classes/にあります。
したがって、あなたの場合、パスは次のようになります: app/classes/util.php
class Util { public static function foo() { /* foo() implementation */ } }
オートローダーに何も追加する必要はありません。必要なクラス メソッドを呼び出すだけです。
\Util::foo();
それでおしまい!