我的集成 yii 框架的 php 代码出现以下错误。
警告:输入中的意外字符:'\' (ASCII=92) state=0 in C:\AppServ\www\edusec\index.php 第 15 行
解析错误:语法错误,第 15 行 C:\AppServ\www\edusec\index.php 中的意外 T_STRING
代码:
<?php
if(!file_exists(__DIR__.'/config/db.php')) {
header('Location: edusec-requirements.php');
die;
}
// comment out the following two lines when deployed to production
defined('YII_DEBUG') or define('YII_DEBUG', false);
defined('YII_ENV') or define('YII_ENV', 'prod');
require(__DIR__ . '/vendor/autoload.php');
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
$config = require(__DIR__ . '/config/web.php');
$app = new yii\web\Application($config);
$app->run();
我正在使用 Appserv 2.6.0 (Php 6) 在 Windows 7 上工作。