第一種方式:好用
$str = "<p>&nbsp;&nbsp;&nbsp;&nbsp;"; $html = htmlspecialchars_decode($str); var_dump($html); |
數(shù)據(jù)庫取出來在轉(zhuǎn)一次就ok了
第二種方式:這里沒有測試
百度編輯器示例的服務(wù)器端代碼是
//獲取數(shù)據(jù)
$content = htmlspecialchars(stripslashes($_POST['myEditor']));
你照抄的話當(dāng)然會被轉(zhuǎn)義!
$content = stripslashes($_POST['myEditor']);
就不轉(zhuǎn)義了

















