<?php

require_once __DIR__ . '/lib/AutoLoad.class.php';
AutoLoad::register();
示例#2
0
文件: App.php 项目: Applaction/myMvc
 /**
  * 自动载入实例化对象
  */
 public function loadObject()
 {
     require_once dirname(__FILE__) . '/AutoLoad.php';
     $autoload = new AutoLoad();
     $autoload->register();
 }