不推荐使用带花括号的数组和字符串偏移访问语法
Array and string offset access syntax with curly braces is deprecated
我刚刚将我的 php 版本更新到 7.4,我注意到弹出这个错误:
Array and string offset access syntax with curly braces is deprecated
这是触发上述错误的部分代码:
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;
}
我的项目中有几个库使用花括号来获取字符串中的单个字符,更改语法问题的最佳方法是什么?
解决这个问题真的很简单,但是请记住,您应该为您在其存储库中使用的每个库分叉并提交您的更改,以帮助其他人。
假设您的代码中有这样的内容:
$str = "test";
echo($str{0});
因为 PHP 7.4 花括号方法获取字符串中的单个字符已被弃用,所以将上面的语法更改为:
$str = "test";
echo($str[0]);
修复问题中的代码将如下所示:
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;
}
我刚刚将我的 php 版本更新到 7.4,我注意到弹出这个错误:
Array and string offset access syntax with curly braces is deprecated
这是触发上述错误的部分代码:
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;
}
我的项目中有几个库使用花括号来获取字符串中的单个字符,更改语法问题的最佳方法是什么?
解决这个问题真的很简单,但是请记住,您应该为您在其存储库中使用的每个库分叉并提交您的更改,以帮助其他人。
假设您的代码中有这样的内容:
$str = "test";
echo($str{0});
因为 PHP 7.4 花括号方法获取字符串中的单个字符已被弃用,所以将上面的语法更改为:
$str = "test";
echo($str[0]);
修复问题中的代码将如下所示:
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;
}