在 8.1 中遇到一些不推荐使用的错误,我想解决。
PHP Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in...
//explode uids into an array
$comp_uids = explode(',', $result['comp_uids']);
$result['comp_uids'] 在这种情况下为空,这就是显示 null 错误的原因。我不确定他们为什么要弃用此功能,但建议的更改是什么来避免这种情况?我看到strlen(): Passing null to parameter #1 ($string) of type string is deprecated
和其他一些人使用 8.1 类似。