437ccm必赢国际-授权官网

Copied! Copy Stacktrace Search Stackoverflow Search Google Error

PHP Noticeyii\base\ErrorException

Undefined offset: 0

  • 2. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/frontend/views/article/about.php at line 323 yii\base\ErrorHandler::handleError(8, 'Undefined offset: 0', '/usr/home/wh-ahd27ahz2xqw9ftth2r...', 323, ...)
    317318319320321322323324325326327328329
     																									
    企业简介
  • 3. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/View.php at line 348 – require('/usr/home/wh-ahd27ahz2xqw9ftth2r...')
    342343344345346347348349350351352353354
        {
            $_obInitialLevel_ = ob_get_level();
            ob_start();
            ob_implicit_flush(false);
            extract($_params_, EXTR_OVERWRITE);
            try {
                require $_file_;
                return ob_get_clean();
            } catch (\Exception $e) {
                while (ob_get_level() > $_obInitialLevel_) {
                    if (!@ob_end_clean()) {
                        ob_clean();
                    }
    
  • 4. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/View.php at line 257 yii\base\View::renderPhpFile('/usr/home/wh-ahd27ahz2xqw9ftth2r...', ['about' => [], 'Design' => [], 'Design1' => null, 'category' => ['template_list' => 'about'], ...])
    251252253254255256257258259260261262263
                        $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;
    
  • 5. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/View.php at line 156 yii\base\View::renderFile('/usr/home/wh-ahd27ahz2xqw9ftth2r...', ['about' => [], 'Design' => [], 'Design1' => null, 'category' => ['template_list' => 'about'], ...], frontend\controllers\ArticleController)
    150151152153154155156157158159160161162
         * @throws InvalidCallException if the view cannot be resolved.
         * @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](guide:concept-aliases) of the view file. Please refer to [[render()]]
         * on how to specify this parameter.
    
  • 6. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/Controller.php at line 410 yii\base\View::render('about', ['about' => [], 'Design' => [], 'Design1' => null, 'category' => ['template_list' => 'about'], ...], frontend\controllers\ArticleController)
    404405406407408409410411412413414415416
         * These parameters will not be available in the layout.
         * @return string the rendering result.
         * @throws InvalidArgumentException 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
    
  • 7. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/frontend/controllers/ArticleController.php at line 109 yii\base\Controller::render('about', ['about' => [], 'Design' => [], 'Design1' => null, 'category' => ['template_list' => 'about'], ...])
    103104105106107108109110111112113114115
            $view->params['category'] =$category;
            return $this->render($category['template_list'],[
                'about'=>$about,
                'Design'=>$Design,
                'Design1'=>$Design1,
                'category'=>$category,
                'page' => $pages,
            ]);
        }
     
        public function actionProduct($doc=''){
            if ($doc) {
                $category = Category::find()->where(array('catdir'=>$doc,'status'=>1))->asArray()->one();
    
  • 8. frontend\controllers\ArticleController::actionAbout('detail')
  • 9. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/InlineAction.php at line 57 – call_user_func_array([frontend\controllers\ArticleController, 'actionAbout'], ['detail'])
    515253545556575859
            $args = $this->controller->bindActionParams($this, $params);
            Yii::debug('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);
        }
    }
    
  • 10. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/Controller.php at line 181 yii\base\InlineAction::runWithParams(['doc' => 'detail'])
    175176177178179180181182183184185186187
            }
     
            $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 */
    
  • 11. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/Module.php at line 534 yii\base\Controller::runAction('about', ['doc' => 'detail'])
    528529530531532533534535536537538539540
            $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);
                if ($oldController !== null) {
                    Yii::$app->controller = $oldController;
                }
     
                return $result;
            }
    
  • 12. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/web/Application.php at line 104 yii\base\Module::runAction('article/about', ['doc' => 'detail'])
    9899100101102103104105106107108109110
                $params = $this->catchAll;
                unset($params[0]);
            }
            try {
                Yii::debug("Route requested: '$route'", __METHOD__);
                $this->requestedRoute = $route;
                $result = $this->runAction($route, $params);
                if ($result instanceof Response) {
                    return $result;
                }
     
                $response = $this->getResponse();
                if ($result !== null) {
    
  • 13. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/vendor/yiisoft/yii2/base/Application.php at line 392 yii\web\Application::handleRequest(yii\web\Request)
    386387388389390391392393394395396397398
        {
            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();
    
  • 14. in /usr/home/wh-ahd27ahz2xqw9ftth2r/htdocs/frontend/web/index.php at line 17 yii\base\Application::run()
    11121314151617
        require __DIR__ . '/../../common/config/main.php',
        require __DIR__ . '/../../common/config/main-local.php',
        require __DIR__ . '/../config/main.php',
        require __DIR__ . '/../config/main-local.php'
    );
     
    (new yii\web\Application($config))->run();
    
  • $_GET = [
        'doc' => 'detail',
    ];
    
    $_COOKIE = [
        'advanced-frontend' => 'opiriboe74vkfrruqdm2j3spgd',
        '_csrf-backend' => 'f7b887000f9842c79736d4bb9f6bdc34378d51847a40afc9f84fac5e5ce5475fa:2:{i:0;s:13:"_csrf-backend";i:1;s:32:"OCMNScpmEFBATpgz8s2XO_duELhXpN2C";}',
        'advanced-backend' => 'hljlt3a4kvggi3dgmkjbvkf3r9',
    ];
    
    $_SESSION = [
        '__flash' => [],
    ];
    Baidu
    sogou