标签:cti class code ati span log color adc static
<?php class Loader { public static function loadClass($class) { $file = $class . ‘.php‘; if (is_file($file)) { require_once($file); } } } spl_autoload_register(array(‘Loader‘, ‘loadClass‘)); $a = new A(); ?>
标签:cti class code ati span log color adc static
原文地址:http://www.cnblogs.com/qizekai/p/6078416.html