gpt4 book ai didi

php - 字符串替换为 = 空字符串 PHP

转载 作者:行者123 更新时间:2023-11-29 13:18:21 25 4
gpt4 key购买 nike

我在字符串替换方面遇到一些典型问题。

首先,我通过使用 Tinymce 在 HTML 上获得“富文本格式”

然后,我用 mysql_real_escape_string($_POST['desc']);

处理 HTML 字符串

但是,当我回显数据库中的值时,存在包含“=”的随机字符串。我尝试通过删除它

PHP:

html_entity_decode($d1);
str_replace('= ','', $d1);
preg_replace('= ','', $d1);
preg_replace('/= /','',$d1);
str_replace('= ','',$d1);

& 由Jquery

$('#descc').text(function (i, old) {
return old
.replace('/= /', ' ');
});

但是没用。

请帮忙...您可以查看描述HERE

最佳答案

也许尝试使用 \s+ 来替换一个或多个空格

preg_replace('/=\s+/i','', $d1);

或者更好地使用:

preg_replace('/=(\s| )+/i','', $d1);

它替换多个字符和空格以及   字符。

关于php - 字符串替换为 = 空字符串 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21182548/

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