You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
报错:
Deprecated: preg_replace_callback(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /www/wwwroot/xxxxxx.net/usr/plugins/TypechoCosPlugin/Plugin.php on line 559
问了下chatgpt,这一段改成这样就不报错了:
public static function refresh_cdn_url($opt, $cosClient, $text)
{
// 确保 $text 是一个字符串
$text = $text ?? '';
报错:
Deprecated: preg_replace_callback(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /www/wwwroot/xxxxxx.net/usr/plugins/TypechoCosPlugin/Plugin.php on line 559
问了下chatgpt,这一段改成这样就不报错了:
public static function refresh_cdn_url($opt, $cosClient, $text)
{
// 确保 $text 是一个字符串
$text = $text ?? '';
}
The text was updated successfully, but these errors were encountered: