如何隐藏html标签而不将其以php形式删除
当我用段落保存字符串时,我陷入困境,并且 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您需要对标签进行例外处理,您可以执行
此操作,这将删除除 p 和 br 之外的所有标签。
要转义字符串,您可以使用
或只是
if you need to have exceptions for your tags you can do
this will remove all tags except p and br.
to escape a string you can use
or just
strip_tags()
函数需要一秒钟争论:如果指定要保存的标签(例如,
strip_tags($text, '
),它不会删除这些标签。') ;
The
strip_tags()
function takes a second argument:If you specify which tags you want saved (e.g.,
strip_tags($text, '<p><br>');
), it will not remove those tags.你可以使用 strip_tags();
也可以使用 jq;
它非常简单有效,
你可以使用
如果你有任何帮助评论我的链接我会告诉你
u can use strip_tags();
and also possible to use jq;
its very easy and efective,,
u can use
if u any help comment my link i ll tell u