| 12345678910111213141516171819 |
- <?php
- /**
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved
- */
- $version = '0.6.0';
- function Aliyun_Log_PHP_Client_Autoload($className) {
- $classPath = explode('_', $className);
- if ($classPath[0] == 'Aliyun') {
- if(count($classPath)>4)
- $classPath = array_slice($classPath, 0, 4);
- $filePath = dirname(__FILE__) . '/' . implode('/', $classPath) . '.php';
- if (file_exists($filePath))
- require_once($filePath);
- }
- }
- spl_autoload_register('Aliyun_Log_PHP_Client_Autoload');
|