autoload - PHP类库几十个怎样才能防止类重复加载
程序员文章站
2022-06-14 08:04:43
...
说是
include_once
require_once
效率很低
然后用 spl_autoload_register
好像也要做很多的判断
有什么办法能解决呢?
回复内容:
说是 include_once
require_once
效率很低
然后用 spl_autoload_register
好像也要做很多的判断
有什么办法能解决呢?
Laruence曾经在博客上解释过,以及解决方法
http://www.laruence.com/2012/09/12/2765.html
可参考psr-0命名标准并结合spl_autoload_register实现类自动加载
具体实现参考composer的ClassLoader类