このテキストをデータベースに保存しています:
<div style=\"font-family:arial black;font-size:20px;text-align:center;color:#3333ff;font-weight:700;\">testing editor</div>
今それを私のウェブサイトエディタに処理しようとするとき、私はこの関数を使用しています:
function striplen($Text)
{
// strip slashes
$Text = stripslashes($Text);
// find the errors quote
$errors = array("#\r\n#", '#"#');
// find the correct self content
$corrected = array('\r\n', '');
return preg_replace($errors, $corrected, $Text);
}
これは、次のようなテキストを出力します。
<div style=font-family:arial black;font-size:20px;text-align:center;color:#3333ff;font-weight:700;>testing editor</div>
スタイルタグの二重引用符が消えているのがわかりますか?
助言がありますか?
どうもありがとう、