非法字符串偏移量警告PHP
将我的php版本更新到5.4.0-3后,我收到一个奇怪的PHP错误。
我有这个数组:
Array(
[host] => 127.0.0.1
[port] => 11211
)
当我尝试像这样访问它时,会收到奇怪的警告
print $memcachedConfig['host']; print $memcachedConfig['port'];
Warning: Illegal string offset 'host' in ....
Warning: Illegal string offset 'port' in ...
我真的不想只编辑我的php.ini并重新设置错误级别。
回答:
请尝试这种方式。…我已经测试了此代码。
$memcachedConfig = array("host" => "127.0.0.1","port" => "11211");print_r($memcachedConfig['host']);
以上是 非法字符串偏移量警告PHP 的全部内容, 来源链接: utcz.com/qa/426226.html