PHP 7.1-空索引运算符数组

http://php.net/manual/en/language.types.array.php所述

Note: As of PHP 7.1.0, applying the empty index operator on a string throws a Fatal error. Formerly, the string was silently converted to an array.

有人可以告诉我一个例子是什么意思吗?

它将如何影响我的代码

谢谢!

解决方法:

PHP中< 7.1:

$var = 'somestring';
$var[] = 'a'; # yields array with two elements ['somestring', 'a']

PHP> = 7.1中,得出

Fatal error: Uncaught Error: [] operator not supported for strings

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...