如何隐藏html标签而不将其以php形式删除

发布于 2024-11-05 15:08:20 字数 156 浏览 0 评论 0原文

当我用段落保存字符串时,我陷入困境,并且 html 标签



出现了保存到数据库中,如果我使用 strip_tags() 字符串是 RAW.. 任何人都可以帮助我请.. 抱歉我的英语不好

im getting stuck when i save string with paragraph, and the html tags <p></p> and <br></br> is come to save into database, if i use strip_tags() the string is being RAW..
anyone can help me pleasee..
sorry for my poor english

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

人疚 2024-11-12 15:08:20

如果您需要对标签进行例外处理,您可以执行

strip_tags($string,"<p><br>");

此操作,这将删除除 p 和 br 之外的所有标签。

要转义字符串,您可以使用

mysql_real_escape_string($str);

或只是

addslashes($str);

if you need to have exceptions for your tags you can do

strip_tags($string,"<p><br>");

this will remove all tags except p and br.

to escape a string you can use

mysql_real_escape_string($str);

or just

addslashes($str);
梦与时光遇 2024-11-12 15:08:20

strip_tags() 函数需要一秒钟争论:

字符串strip_tags(字符串$str [,字符串$allowable_tags])

如果指定要保存的标签(例如,strip_tags($text, '


') ;
),它不会删除这些标签。

The strip_tags() function takes a second argument:

string strip_tags ( string $str [, string $allowable_tags ] )

If you specify which tags you want saved (e.g., strip_tags($text, '<p><br>');), it will not remove those tags.

余生再见 2024-11-12 15:08:20

你可以使用 strip_tags();

也可以使用 jq;
它非常简单有效,
你可以使用

$('<p>').attr('disabled',"disabled"");

如果你有任何帮助评论我的链接我会告诉你

u can use strip_tags();

and also possible to use jq;
its very easy and efective,,
u can use

$('<p>').attr('disabled',"disabled"");

if u any help comment my link i ll tell u

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文