include.php 1.2 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. spl_autoload_register(function ($classname) {
  14. $pathname = __DIR__ . DIRECTORY_SEPARATOR;
  15. $filename = str_replace('\\', DIRECTORY_SEPARATOR, $classname) . '.php';
  16. if (file_exists($pathname . $filename)) {
  17. foreach (['AliPay', 'WeChat', 'WeMini', 'WePay', 'We'] as $prefix) {
  18. if (stripos($classname, $prefix) === 0) {
  19. include $pathname . $filename;
  20. return true;
  21. }
  22. }
  23. }
  24. return false;
  25. });