blessing-skin-server/includes/autoload.inc.php
2016-02-04 18:35:14 +08:00

15 lines
304 B
PHP

<?php
/**
* @Author: prpr
* @Date: 2016-02-02 21:17:59
* @Last Modified by: prpr
* @Last Modified time: 2016-02-04 18:34:34
*/
function __autoload($classname) {
global $dir;
$filename = "$dir/includes/".$classname.".class.php";
include_once($filename);
}
require "$dir/config.php";