Blame view

framework/library/cos/include.php 213 Bytes
4d84a934   曹明   初始代码提交
1
2
3
4
5
6
7
8
<?php

// >= php 5.3.0
spl_autoload_register(function($class){
    $dir = dirname(__FILE__);
    $class = str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
    include($dir.DIRECTORY_SEPARATOR.$class); 
});