示例#1
0
文件: functions.php 项目: soska/dte
 function start($name = null)
 {
     self::$controller = new Controller($name);
 }
示例#2
0
文件: Engine.php 项目: Hikyu/Tam
 private static function init_controllor()
 {
     self::$controller = isset($_GET['controller']) ? daddslashes($_GET['controller']) : 'index';
 }