当前位置:网站首页>Array and string offset access syntax with curly braces is no longer support

Array and string offset access syntax with curly braces is no longer support

2022-06-22 20:55:00 橘柒啊

PHP7.4不再能够使用花括号来访问数组或者字符串的偏移.需要将{}修改成[] 就可以解决问题

若代码逻辑中含有类似

  $asc = ord($s{0}) * 256 + ord($s{1}) - 65536;
需要修改成

$asc = ord($s[0]) * 256 + ord($s[1]) - 65536;


原文链接:https://blog.csdn.net/sinat_29193161/article/details/112801403

原网站

版权声明
本文为[橘柒啊]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_41737353/article/details/125316517