如何在 preg_match 中使用 htmlspecialchars

发布于 2024-11-03 02:50:16 字数 624 浏览 1 评论 0原文

这是我的代码,它会回显“不工作”

    $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 技术交流群。

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

发布评论

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

评论(2

听你说爱我 2024-11-10 02:50:16

这是因为 htmlspecialchars 翻译所有特殊字符 <&>"' 等到 html 实体(例如, & 变为 &)。

This is because htmlspecialchars translates all special characters <&>"', etc into html entities (e.g., & becomes &). Thus your match fails.

怼怹恏 2024-11-10 02:50:16

htmlspecialchars 将从 转换

<

<

等。
请参阅手册。

htmlspecialchars will convert from

<

to

<

etc.
See the manual.

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