gpt4 book ai didi

Php 7.1 - 空索引运算符数组

转载 作者:可可西里 更新时间:2023-11-01 01:14:44 26 4
gpt4 key购买 nike

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

关于Php 7.1 - 空索引运算符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42045336/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com