PHP 转义 的尖括号?

发布于 2024-11-27 22:48:47 字数 199 浏览 0 评论 0原文

在转义尖括号时遇到很多麻烦..

$embeds = preg_replace(<!--nextpage-->, '', $embeds, 1);

确实发现 strip_tags() 应该可以解决问题,但一定在某个地方搞砸了。

删除 < 的最佳方法是什么? !--下一页-->?

Having a lot of trouble escaping angle brackets..

$embeds = preg_replace(<!--nextpage-->, '', $embeds, 1);

Did find that strip_tags() is suppose to do the trick, but must have messed up somewhere.

What would be the best way to remove the < !--nextpage-->?

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

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

发布评论

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

评论(1

橘味果▽酱 2024-12-04 22:48:47

你想剥离或逃避尖括号吗?

剥离适用于 strip_tags()如果 HTML 有效。示例: $embeds = strip_tags($embeds);

可以使用 html_special_chars()。示例: $embeds = htmlspecialchars($embeds, ENT_NOQUOTES);

您也可以尝试以下操作:

preg_replace('/<!--.+-->/U', '', $embeds)

Do you want to strip or to escape angel brackets?

Stripping works with strip_tags() if the HTML is valid. Example: $embeds = strip_tags($embeds);

Escaping can be done using html_special_chars(). Example: $embeds = htmlspecialchars($embeds, ENT_NOQUOTES);

You can try the following as well:

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