不推荐使用带大括号的数组和字符串偏移量访问语法
我刚刚将我的php版本更新到7.4,我注意到弹出此错误:
不推荐使用带大括号的数组和字符串偏移量访问语法
这是我的代码的一部分,它触发了上述错误:
public function getRecordID(string $zoneID, string $type = '', string $name = ''): string
{
$records = $this->listRecords($zoneID, $type, $name);
if (isset($records->result{0}->id)) {
return $records->result{0}->id;
}
return false;
}
我的项目中很少有库使用大括号来获取字符串中的单个字符,更改语法问题的最佳方法是什么?