E:\xuexi_demo2\protected\modules\portal\views\mobilecourse\index.php(198)
186 <a class="download" target="target" href="https://pan.baidu.com/s/1XjSK2RKkh-NuGgGyJwlYNQ"> 187 WPS办公应用职业技能等级证书模拟训练系统 188 </a> 189 190 <h3><span>3</span> 关注微信公众号</h3> 191 <img class="white" style="width:200px;height:200px" src="/public/home/images/wei.png" alt=""> 192 </div> 193 <img class="iphones" src="/public/home/images/diannaos.jpg" alt=""> 194 195 </div> 196 </div> 197 <!--页脚--> 198 <?php include("/protected/modules/portal/views/menu/footer.php"); ?> 199 <!--end foot--> 200 <script language="javascript"> 201 var tongji_hits_type = 8; 202 var tongji_hits_productid = 1; 203 </script> 204 <script language="javascript" src="/public/tongji/hits.js"></script> 205 </body> 206 207 </html>
#0 |
+
–
E:\xuexi_demo2\protected\modules\portal\views\mobilecourse\index.php(198): include() 193 <img class="iphones" src="/public/home/images/diannaos.jpg" alt=""> 194 195 </div> 196 </div> 197 <!--页脚--> 198 <?php include("/protected/modules/portal/views/menu/footer.php"); ?> 199 <!--end foot--> 200 <script language="javascript"> 201 var tongji_hits_type = 8; 202 var tongji_hits_productid = 1; 203 </script> |
#1 |
+
–
E:\xuexi_demo2\protected\modules\portal\controllers\MobilecourseController.php(60): include("E:\xuexi_demo2\protected\modules\portal\views\mobilecourse\index...") 55 $arr_moni = json_decode($json_moni,true); 56 if($arr_moni["code"] == 200){ 57 $filepath_moni = $arr_moni["data"]["filepath"]; 58 $filesize_moni = round($arr_moni["data"]["filesize"]/1024/1024); 59 } 60 include($this->viewpath ."/index.php"); 61 } 62 63 //curl发送表单数据(POST方式),参数:接口地址, 端口号(无端口号请留空), 数组 64 public function sendPostData($interface, $port, $arrPostInfo){ 65 set_time_limit(60);//配置该页最久执行时间。 |
#2 |
+
–
C:\yii-1.1.14\framework\web\actions\CInlineAction.php(49): MobilecourseController->actionindex() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#3 |
+
–
C:\yii-1.1.14\framework\web\CController.php(308): CInlineAction->runWithParams(array()) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#4 |
+
–
C:\yii-1.1.14\framework\web\CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#5 |
+
–
C:\yii-1.1.14\framework\web\CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#6 |
+
–
C:\yii-1.1.14\framework\web\CWebApplication.php(282): CController->run("index") 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))); |
#7 |
+
–
C:\yii-1.1.14\framework\web\CWebApplication.php(141): CWebApplication->runController("portal/mobilecourse/index") 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. |
#8 |
+
–
C:\yii-1.1.14\framework\base\CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#9 |
+
–
E:\xuexi_demo2\index.php(23): CApplication->run() 18 19 require_once($yii); 20 21 $app = Yii::createWebApplication($config); 22 23 $app->run(); 24 25 ?> |