国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
517B

  1. <?php
  2. if (!defined('DEDEINC')) exit('dedebiz');
  3. spl_autoload_register(function ($classname) {
  4. $pathname = __DIR__.DIRECTORY_SEPARATOR;
  5. $filename = str_replace('\\', DIRECTORY_SEPARATOR, $classname).'.php';
  6. if (file_exists($pathname.$filename)) {
  7. foreach (['AliPay', 'WeChat', 'WeMini', 'WePay', 'We'] as $prefix) {
  8. if (stripos($classname, $prefix) === 0) {
  9. include $pathname.$filename;
  10. return true;
  11. }
  12. }
  13. }
  14. return false;
  15. });
  16. ?>