Make a note
Use the htmlspecialchars_decode() function to restore escaped characters to HTML tags
$str = '<p><span style=";font-family:微软雅黑;font-size:16px"> <span style="font-family:微软雅黑">';
htmlspecialchars_decode($str)
Return
'<p><span style=";font-family:微软雅黑;font-size:16px"> <span style="font-family:微软雅黑">'