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.
我现在使用 RequireJS 已经有几个星期了,我真的开始喜欢它了。
但现在我想知道 PHP 是否有类似的东西。目前我这样做:
class someModule implements Module{ function run($foobar){ //some code } } CORE::register('someModule');
请注意,我想保持向后兼容,所以我不能使用命名空间。