E:\www\utpure\framework\web\CWebApplication.php(286)
274 public function runController($route) 275 { 276 if(($ca=$this->createController($route))!==null) 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); 288 } 289 290 /** 291 * Creates a controller instance based on a route. 292 * The route should contain the controller ID and the action ID. 293 * It may also contain additional GET variables. All these must be concatenated together with slashes. 294 * 295 * This method will attempt to create a controller in the following order: 296 *297 *
- If the first segment is found in {@link controllerMap}, the corresponding 298 * controller configuration will be used to create the controller;
#0 |
+
–
E:\www\utpure\framework\web\CWebApplication.php(141): CWebApplication->runController("article-ryinfo2018-1") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#1 |
+
–
E:\www\utpure\framework\base\CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#2 |
+
–
E:\www\utpure\index.php(94): CApplication->run() 89 // constant varchar import 90 require_once (dirname(__FILE__)).'/protected/config/constant.php'; 91 92 93 require_once($yii); 94 Yii::createWebApplication($config)->run(); 95 96 |