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
Handling HTML entities via mbstring is deprecated; use htmlspecialchars, htmlentities, or mb_encode_numericentity/mb_decode_numericentity instead
here:
public static function convertToHtmlEntities($string, $encoding)
{
if (function_exists('mb_convert_encoding')) {
return mb_convert_encoding($string, 'HTML-ENTITIES', $encoding);
}
in PHP8+
The text was updated successfully, but these errors were encountered:
mb_convert_encoding()
:Handling HTML entities via mbstring is deprecated; use htmlspecialchars, htmlentities, or mb_encode_numericentity/mb_decode_numericentity instead
here:
in PHP8+
The text was updated successfully, but these errors were encountered: