我遵循本教程(http://www.youtube.com/watch?v=xKhT1fISgAs)使用yii框架添加bootstrap,但是出现了这个错误
解析错误:语法错误,第13行的E:\ xampp \ htdocs \ yii_tuts \ tt \ protected \ config \ main.php中的意外T_CONSTANT_ENCAPSED_STRING
我按照本教程中的每一步操作。但在视频中一切都很好。
这是我在主配置文件中的代码
<?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.*',
),
你能否指出错误
答案 0 :(得分:2)
你错过了一个.
。更改您的代码如下:
'aliases'=>array(
'bootstrap' => realpath(__DIR__.'/../extension/yiibooster'),
),