Example #1
0
 /**
  * 静态加载文件
  */
 public function import($file_name)
 {
     return Controller::import($file_name);
 }
Example #2
0
<?
 error_reporting(E_ALL ^ E_NOTICE);
 ini_set('memory_limit', '700M');
 
 include_once("controller/Controller.php");      // this is the initializer (if I could say so) for the controller part of our MVC pattern
 
 $controller = new Controller();                 // instantiate a class
 
 $controller->import();                          // start it. nice, isn't it?
 
?>