blessing-skin-server/includes/autoload.inc.php
2016-02-02 21:23:20 +08:00

14 lines
277 B
PHP

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