私は何が間違っているのかわからず、PHPの初心者であるため、私のアプローチが正しいかどうかわかりません。TinyMCE エディターを使用してテキストをデータベースに保存し、このテキストを WordPress を使用したサイトのブラウザーに表示します。
これは実際にデータベースに保存されるテキストです
<strong>Well we should think about how to see this editor</strong>
<ul>
<li>Its Good in nature</li>
<li>Well Matured</li>
<li>Easy to use.</li>
</ul>
<strong><span style=\"color: #ff0000;\">We should use this editor every now and than</span></strong> <span style=\"color: #333333;\">©</span>
This is going to be a heading to test it
<h1 style=\"text-align: right;\"></h1>
このようなエンコードされたテキストで申し訳ありませんが、PHP のhtml_entity_decode
メソッドを使用してそのテキストをブラウザに送り返して表示しています。これは私の関数呼び出しです
html_entity_decode($event->Description,ENT_QUOTES,'UTF-8')
HTML出力
<font color="#cc0000">'<strong>Well we should think about how to see this editor</strong>
<ul>
<li>Its Good in nature</li>
<li>Well Matured</li>
<li>Easy to use.</li>
</ul>
<strong>
<span style=\"color: #ff0000;\">We should use this editor every now and than</span></strong>
<span style=\"color: #333333;\">©</span>
This is going to be a heading to test it
<h1 style=\"text-align: right;\"></h1>'</font>
色情報以外はすべて整っているようです。生成された HTML 出力で色が機能しません。
私が間違っている場所を理解するのを手伝ってくれる人はいますか