如何从字符串中删除/替换”
个字符?
我已经尝试了html_entity_decode
,但似乎没有用。字符串中还有其他类似的字符,似乎没有被转换或删除。
有什么想法吗?
答案 0 :(得分:2)
问题是html_entity_decode()
不会翻译数字实体。
答案 1 :(得分:1)
str_replace(array('”', '”'), '', $thestring);
以下是一个工作示例:http://codepad.org/gXrZcxaF
答案 2 :(得分:0)
这是否符合您的要求: