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 等自定义类?以及如何将这些添加到自动加载器?
自定义类应该在:app/classes/
所以,在你的情况下,路径应该是:app/classes/util.php
class Util { public static function foo() { /* foo() implementation */ } }
无需向自动加载器添加任何内容,您只需调用所需的类方法:
\Util::foo();
而已!