当前位置: 首页 > 知识库问答 >
问题:

Yii引导语法错误,意外的T_常量\u封装的\u字符串错误

范文昌
2023-03-14

我遵循这个教程(http://www.youtube.com/watch?v=xKhT1fISgAs)使用yii框架添加引导,但出现此错误

分析错误:语法错误,在E:\xampp\htdocs\yii\u tuts\tt\protected\config\main中出现意外的T_常量\u ENCAPSED_字符串。第13行的php

我遵循本教程中的每个步骤。但在视频中一切都很好。

这是我在主配置文件中的代码

<?php

// uncomment the following to define a path alias
// Yii::setPathOfAlias('local','path/to/local-folder');

// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
    'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
    'name'=>'My Web Application',

    'aliases'=>array(
        'bootstrap' => realpath(__DIR__'/../extension/yiibooster'),
    ),

    // preloading 'log' component
    'preload'=>array('log', 'bootstrap'),
    'theme'=>'heart',
    // autoloading model and component classes
    'import'=>array(
        'application.models.*',
        'application.components.*',
    ),

你能指出错误吗

共有1个答案

师建德
2023-03-14

你错过了一个 。更改代码,如下所示:

'aliases'=>array(
    'bootstrap' => realpath(__DIR__.'/../extension/yiibooster'),
), 

 类似资料: