PHP版本升级注意事项
php 7.4 Array and string offset access syntax with curly braces is deprecated
PHP 7.2 升级到 7.4 后,提示此警告错误信息。
1 | $pad = ord($text{strlen($text) - 1}); |
vim 目录文件检索
1 | '\$\w+\{' |
vim 文件内搜索
1 | /\$\w\+{ |
php 7.4 后统一字符串数组获取方式,使用中括号代替花括号。
1 | $pad = ord($text[strlen($text) - 1]); |