/data1/vhosts/apigaojian.leju.com/htdocs/framework/dispatcher.php(237)
234 $classPath = _APP_ . $appName . "/" . $controllerName . ".php"; 235 if (!file_exists($classPath)) { 236 $page_path = "{$page_path}|{$appName}/{$controllerName}/{$actionName}"; 237 throw new Leb_Exception('Error 404, error page not found!' . $page_path, 404); 238 } 239 // 转发 240 $this->setAppName($appName);
#0 |
+
-
/data1/vhosts/apigaojian.leju.com/htdocs/framework/dispatcher.php(212):Leb_Dispatcher->dispatch("v1","site","index",array(),Leb_Dispatcher) 209 $appPath = $plugins->getAppName(); 210 $controllerName = $plugins->getControllerName(); 211 $actionName = $plugins->getActionName(); 212 $this->dispatch($appPath, $controllerName, $actionName, array(), $plugins); 213 return $plugins; 214 } 215 |
#1 |
+
-
/data1/vhosts/apigaojian.leju.com/htdocs/framework/plugin/abstract.php(243):Leb_Dispatcher->_afterLaunch(Leb_Dispatcher) 240 $result = $this->execute($plugins); 241 // 3:把自己通过插件过滤出去 242 if (!$this->getEnv('disAllowRun')) { 243 $this->_afterLaunch($result); 244 } 245 246 //显示调试信息 |
#2 |
+
-
/data1/vhosts/apigaojian.leju.com/htdocs/framework/plugin/broker/abstract.php(45):Leb_Plugin_Abstract->run(Leb_Request) 42 $result = null; 43 foreach ($plugins as $plugin) { 44 // 加工厂,把前面一个插件运行的结果传递给后面 45 $result = $plugin->run($result); 46 // 把前面的结果保存在运行对象里供后续使用 47 if (($result instanceof Leb_Plugin_Abstract)) { 48 $this->setRunner($result->getAlias(), $result); |
#3 |
+
-
/data1/vhosts/apigaojian.leju.com/htdocs/framework/controller.php(59):Leb_Plugin_Broker_Abstract->execute(array('Leb_Request'=>array(),'Leb_Dispatcher'=>array())) 56 ); 57 58 // MVC 完毕 59 $result = parent::execute($myPlugins); 60 return $result; 61 } 62 |
#4 |
+
-
/data1/vhosts/apigaojian.leju.com/htdocs/framework/plugin/abstract.php(240):Leb_Controller->execute(null) 237 } 238 239 // 2:把plugins传给本类进行加工 240 $result = $this->execute($plugins); 241 // 3:把自己通过插件过滤出去 242 if (!$this->getEnv('disAllowRun')) { 243 $this->_afterLaunch($result); |
#5 |
+
-
/data1/vhosts/apigaojian.leju.com/htdocs/index.php(13):Leb_Plugin_Abstract->run() 10error_reporting(E_ALL); 11$_GET['debug'] = 1; 12$controller = Leb_Controller::getInstance(); 13$controller->run(); |