我的客户说他使用我的脚本收到此错误:
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /path/to//header.php on line 34
Parse error: syntax error, unexpected T_STRING, expecting T_CONSTANT_ENCAPSED_STRING or '(' in/path/to/header.php on line 34
header.php
中的第34行只是use \Main\Class;
现在,我告诉他他必须PHP >= 5.3.0
,他说他的PHP版本是5.3.24
可能是什么问题?
编辑:
之前和之后的行30. // Define absolute path
31. define("ABSPATH", $abs_path);
32. $_SESSION["abs_path"] = ABSPATH;
33.
34. use \CNS\main\CNS;
35. $cns = new CNS();
编辑2:
他发给我了这个:
Program Version
Apache: 2.2.24
CentOS: CentOS release 6.4 (Final)
cPanel: 11.36.1 (build 8)
Curl: 7.12.1
MySQL 5.5.30
phpMyAdmin 3.5.5
Python: 2.6.6
Program Version
Perl: 5.8.8
**PHP: 5.3.24**
ionCube Loader: 4.2.2
Zend Optimizer: 3.3.9
Ruby: 1.8.7
Rails: 3.2.8
OpenSSL: 1.0.0-fips
答案 0 :(得分:40)
如果您尝试使用名称空间但没有PHP 5.3,则会发生这种情况。 PHP 5.2及更低版本不支持名称空间,并在看到反斜杠时抛出此错误。
- 编辑:混淆版本。如果我没有弄错的话,它的5.2及以下没有名称空间。
答案 1 :(得分:13)
现在,我告诉他他必须有PHP> = 5.3.0并且他说他的PHP版本是5.3.24
可能是什么问题?
他的PHP版本实际上是< 5.3.0,他是否知道。
答案 2 :(得分:2)
如果在提到的错误后出现“意外的T_STRING”错误,则需要安装PHP 5.4 +
答案 3 :(得分:1)
请他创建一个phpinfo()
的文件。他可能没有PHP版本> = 5.3.0 。
答案 4 :(得分:1)
<FilesMatch "\.(inc|php|php3|php4|php44|php5|php52|php53|php54|php55|php56|phtml|phps)$">
AddHandler x-httpd-php53 .php
</FilesMatch>
在.htaccess中
答案 5 :(得分:1)
与其他用户一样:使用命名空间仅对大于5.3.0的PHP版本有效,因此我的解决方案是能够包含使用命名空间的库的可选使用是检查php版本并使用 eval()函数来避免较低版本的PHP发出错误,即使在编译时也是如此。
这样的事情:
if ( phpversion() > '5.3.0' ){
include_once('/path/to/Library.php');
eval("Library\Foo::bar();");
}
答案 6 :(得分:1)
我遇到了同样的问题,做了一些研究,我设法解决了这个问题。
就我而言,我使用的是PHP7,而我要做的就是编辑位于~/.composer/vendor/laravel/installer/
的文件laravel,其中shebang行是#!/usr/bin/env php
我改为#!/usr/bin/env php7
再次运行工匠后,我开始工作了:
-bash-3.2$ laravel
Laravel Installer version 1.3.3
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
help Displays help for a command
list Lists commands
new Create a new Laravel application.