如何在 preg_match 中使用 htmlspecialchars
这是我的代码,它会回显“不工作”
$f = file_get_contents("http://www.google.com");
$text = htmlspecialchars( $f );
$matches = array();
preg_match('@<a.*?</a>@s', $text, $matches);
if ($matches) {
$text2 = $matches[0];
echo $text2;
}
else {
echo "Not working";
}
如果我做了一个变量:
$text = '<a href="http://www.google.com">Google</a> is your best friend!';
这会以某种方式工作,但当我从以下位置获取它时它不会工作:
$text = htmlspecialchars( $f );
有人知道为什么吗?
This is my code, it will echo "Not working"
$f = file_get_contents("http://www.google.com");
$text = htmlspecialchars( $f );
$matches = array();
preg_match('@<a.*?</a>@s', $text, $matches);
if ($matches) {
$text2 = $matches[0];
echo $text2;
}
else {
echo "Not working";
}
If I made a variable:
$text = '<a href="http://www.google.com">Google</a> is your best friend!';
This will work somehow, but it wont when I take it from the:
$text = htmlspecialchars( $f );
Anyone knows why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为
htmlspecialchars
翻译所有特殊字符<&>"'
等到 html 实体(例如,&
变为&
)。This is because
htmlspecialchars
translates all special characters<&>"'
, etc into html entities (e.g.,&
becomes&
). Thus your match fails.htmlspecialchars 将从 转换
为
等。
请参阅手册。
htmlspecialchars will convert from
to
etc.
See the manual.