所以我使用PHP來顯示輸出JSON的API的數據。其中一個JSON數據字段的輸出包含用於格式化文本的HTML。我的問題是如何使用PHP來顯示JSON,但是隨後使用HTML返回的數據呈現HTML。PHP顯示JSON/HTML返回
這裏的PHP ...
echo "Description:".$results['description']."</br>";
的[ '說明']字段,返回的信息,如..
<p>This would be an example of returned description.<br> It includes HTML.</p>
那麼,如何擺脫PHP來顯示返回數據的HTML?
http://php.net/manual/en/function.html-entity-decode.php? – rmondesilva
如何插入html_entity_decode()? –
喜歡這個'echo「描述:」。html_entity_decode($ results ['description'])。「」;' – rmondesilva