本文介绍了PHP html解码帮助-转换:A' quote'是b粗体/b.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要这样转换一个字符串:

I need to convert a string like this:

A &#039;quote&#039; is <b>bold</b>

进入:

A 'quote' is <b>bold</b>

html_entity_decode()无效.

推荐答案

请确保使用正确的quote_style:

Make sure you use the right quote_style:

html_entity_decode('A &#039;quote&#039; is <b>bold</b>', ENT_QUOTES);

ENT_QUOTES将转换双引号和单引号. (PHP手册:html_entity_decode )

ENT_QUOTES Will convert both double and single quotes. (PHP Manual: html_entity_decode)

这篇关于PHP html解码帮助-转换:A&amp;#039; quote&amp;#039;是b粗体/b.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 21:23