gpt4 book ai didi

php -   < o : p > & nbsp ; display error

转载 作者:行者123 更新时间:2023-11-30 23:42:26 27 4
gpt4 key购买 nike

每当我收到来自 MS outlook 的电子邮件时,我都会收到此标记 & nbsp ; (没有空格)哪个显示为?在 <>.

当我将其更改为 ISO-8859-1 时,浏览器页面字符集编码为 UTF-8,符号消失但我的其他字符出错。我必须使用 UTF-8

我怎样才能删除这个标签序列。

PHP 语言。乱七八糟的存储在mysql中。

最佳答案

如果你想在 PHP 中删除一些东西你可以使用 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")

在这种情况下,您只需将搜索到的字符串替换为任何内容,但也可以是其他内容。

关于php - <o :p>&nbsp;</o:p> < o : p > & nbsp ; </o : p > display error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1951879/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com