gpt4 book ai didi

php mysql html 标签

转载 作者:太空宇宙 更新时间:2023-11-03 10:25:08 25 4
gpt4 key购买 nike

我在处理从数据库中获取的字符串时遇到了一些问题。这些字符串中也包含各种 html 标签。例如:

"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard</p>" 

这是我从数据库中得到的。我如何摆脱 <p>标签在里面?我已经试过了 strip_tags和其他功能无济于事。

这些标签不会出现在 tinymcetextareas并且标签在那里工作各自的功能。

最佳答案

使用这个函数对你有帮助

function convertSpecialChars($string) {
$string = str_replace("&", "&amp;", $string);
$string = str_replace("\n", "&#xA;", $string);
$string = str_replace("‘", "&apos;", $string);
$string = str_replace(">", "&gt;", $string);
$string = str_replace("<", "&lt;", $string);
$string = str_replace("“", "&quot;", $string);
return $string;
}

享受...

关于php mysql html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6856527/

25 4 0