autoload.php 355 B

12345678910111213
  1. <?php
  2. spl_autoload_register(function ($class) {
  3. $name = str_replace('AlibabaCloud\\Tea\\Rpc\\', '', $class);
  4. $file = __DIR__ . \DIRECTORY_SEPARATOR . 'src' . \DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $name) . '.php';
  5. if (file_exists($file)) {
  6. require_once $file;
  7. return true;
  8. }
  9. return false;
  10. });