PHP7.4不再支持使用大括号访问数组以及字符串的偏移_PHP代码
PHP7.4不支持数组{}写法,统一为数组[]
解决方法
$pad = ord($text {strlen($text) - 1});
修改为
$pad = ord($text [strlen($text) - 1]);
Mark 新起点
PHP7.4不再支持使用大括号访问数组以及字符串的偏移_PHP代码
PHP7.4不支持数组{}写法,统一为数组[]
解决方法
$pad = ord($text {strlen($text) - 1});
修改为
$pad = ord($text [strlen($text) - 1]);
使用 strtotime() 时,使用了+ 号报错。错误信息为
strtotime( "+" . $i-$week .' days', $time) 应该修改为 strtotime( "+" . ($i-$week) .' days', $time)
在php8 中+/-的优先及要高于php 连接符。所以这里使用括号来强制分隔避免意想不到的问题。