开发者

<o:p>&nbsp;</o:p> < o : p > & nbsp ; < / o : p > display error

Whenever i receive an email from MS outlook i get this tag < o : p > & nbsp ; < / o : p > (without th开发者_开发技巧e spaces) which display's as ? in a <>.

Browser page charset encoding is UTF-8 when i change it to ISO-8859-1 the symbol disappears but my other characters goes wrong. I have to use UTF-8

How can i remove this tag sequence.

PHP language. Storing the mess in mysql.


If you want to remove something in PHP you can use str_replace

$string = "<o:p>&nbsp;</o:p> and rest of string";
$searchedstring = "<o:p>&nbsp;</o:p>";
$string = str_replace($searchedstring,"",$string);
echo $string; (Output will be " and rest of string")

In this case you just replace the searched string with nothing, but it can also be something else.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜