PHP 转义 的尖括号?
在转义尖括号时遇到很多麻烦..
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想剥离或逃避尖括号吗?
剥离适用于
strip_tags()
如果 HTML 有效。示例:$embeds = strip_tags($embeds);
可以使用
html_special_chars()
。示例:$embeds = htmlspecialchars($embeds, ENT_NOQUOTES);
您也可以尝试以下操作:
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: