<h3>1.飞机</h3> <h4>从<b>北京、上海、广州、深圳、长沙、昆明、重庆、成都</b>均有到<b>路桥机场</b>的直飞班机。</h4> <h3>2.汽车</h3> <h4><b>温岭客运中心</b>每天有直达<b>北京、上海、杭州、南京、金华、温州、宁波</b>的班次,而温岭客运中心距离本公司只有30分钟的路程。</h4> <h3>3.火车</h3> <h4><b>温岭火车站</b>每天有23班动车组在温岭经停,公司就位于火车站附近。</h4> </div> </div> </div> <div class="container contact-way <?php echo 'menu'.$ContactMenu->menuorder; ?>"> <h3 class="col-lg-12 col-md-12 col-sm-12 col-xs-12">联系方式</h3> <div class="way col-lg-5 col-md-5 col-sm-5 col-xs-12"> <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12"> <h4>迪奥电器有限公司</h4> <span>电话:+86-576-86379888</span> <span class="align-right">+86-576-86833666</span> <!-- <span class="align-right">+86-576-86370444</span> --> <span>传真:86-0576-86381616</span> <span>邮箱:sales@dihour.com</span>
<h4><b>温岭客运中心</b>每天有直达<b>北京、上海、杭州、南京、金华、温州、宁波</b>的班次,而温岭客运中心距离本公司只有30分钟的路程。</h4> <h3>3.火车</h3> <h4><b>温岭火车站</b>每天有23班动车组在温岭经停,公司就位于火车站附近。</h4> </div> </div> </div> <div class="container contact-way <?php echo 'menu'.$ContactMenu->menuorder; ?>"> <h3 class="col-lg-12 col-md-12 col-sm-12 col-xs-12">联系方式</h3> <div class="way col-lg-5 col-md-5 col-sm-5 col-xs-12"> <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12"> <h4>迪奥电器有限公司</h4> <span>电话:+86-576-86379888</span> <span class="align-right">+86-576-86833666</span>
*/ public function renderPhpFile($_file_, $_params_ = []) { ob_start(); ob_implicit_flush(false); extract($_params_, EXTR_OVERWRITE); require($_file_); return ob_get_clean(); } /** * Renders dynamic content returned by the given PHP statements.
$this->renderers[$ext] = Yii::createObject($this->renderers[$ext]); } /* @var $renderer ViewRenderer */ $renderer = $this->renderers[$ext]; $output = $renderer->render($this, $viewFile, $params); } else { $output = $this->renderPhpFile($viewFile, $params); } $this->afterRender($viewFile, $params, $output); } array_pop($this->_viewFiles); $this->context = $oldContext;
* @throws InvalidParamException if the view cannot be resolved or the view file does not exist. * @see renderFile() */ public function render($view, $params = [], $context = null) { $viewFile = $this->findViewFile($view, $context); return $this->renderFile($viewFile, $params, $context); } /** * Finds the view file based on the given view name. * @param string $view the view name or the path alias of the view file. Please refer to [[render()]] * on how to specify this parameter.
* These parameters will not be available in the layout. * @return string the rendering result. * @throws InvalidParamException if the view file or the layout file does not exist. */ public function render($view, $params = []) { $content = $this->getView()->render($view, $params, $this); return $this->renderContent($content); } /** * Renders a static string by applying a layout. * @param string $content the static string being rendered
// } // $note->save(); } $ContactMenu=Menu::find()->where(['menulink'=>"contact.html"])->one(); return $this->render('contact',[ 'ContactMenu' => $ContactMenu, ]); } function actionNewsdetails(){ if(isset($_GET["id"])){ // $id=strtr($_GET['id'], array(' '=>'')); $id = \Yii::$app->request->get('id');
$args = $this->controller->bindActionParams($this, $params); Yii::trace('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
} $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
$parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); Yii::$app->controller = $oldController; return $result; } else { $id = $this->getUniqueId(); throw new InvalidRouteException('Unable to resolve the request "' . ($id === '' ? $route : $id . '/' . $route) . '".');
$params = $this->catchAll; unset($params[0]); } try { Yii::trace("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } else { $response = $this->getResponse(); if ($result !== null) { $response->data = $result;
try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
require(__DIR__ . '/common/config/main-local.php'), require(__DIR__ . '/frontend/config/main.php'), require(__DIR__ . '/frontend/config/main-local.php') ); $application = new yii\web\Application($config); $application->run(); }