我可以启用 phar 扩展但出现此错误:
警告:输入中出现意外字符:'\' (ASCII=92) state=1 位于 /home/cesartineo/tineo.mobi/public/silex/silex.phar 第 27 行
解析错误:语法错误,/home/cesartineo/tineo.mobi/public/silex/silex.phar 第 27 行中出现意外的 T_STRING
我使用来自 silex web 的示例 .htaccess 和 index.php。
require_once __DIR__.'/silex.phar';
$app = new Silex\Application();
$app->get('/hello/{name}', function ($name) use ($app) {
return 'Hello '.$app->escape($name);
});
$app->run();
答案1
确保您运行的是 PHP 5.3.2 或更高版本。
祝你好运!