我安装了PhpStorm版本2017.2并在设置>下配置了PHP 7.1。语言和框架> PHP> PHP语言水平
不幸的是,在字符串变量上使用空数组索引运算符时,它没有突出显示可能的错误(描述:http://php.net/manual/de/migration71.incompatible.php#migration71.incompatible.empty-string-index-operator)
代码:
<?php
$test = 'a string';
$test[] = 'an array value';
echo "it works";
使用PHP 7.1.x执行代码时,会发生以下错误
致命错误:未捕获错误:
中的字符串不支持[]运算符
所以代码肯定不起作用。
任何人都可以帮我处理PhpStorm配置吗?