提取所有 url Href php

发布于 2024-10-21 14:13:42 字数 458 浏览 1 评论 0原文

如何将这些链接转换为 sha1?然后返回到已经应用了sha1的html


$dom = new DOMDocument;
$dom->loadHTML($html);
$links = $dom->getElementsByTagName('a');
foreach ($links as $link) {
    if (preg_match("/globo.com/i", $link->getAttribute('href'))) {
        $v = $link->getAttribute('href');
        $str = str_replace($v,'http://www.globo.com/?id='.sha1($v),$v);
        $str2 = str_replace($v,$str,$html);
        echo $str2."
"; } }

How do I convert these links to sha1? and then return to the html already applied with sha1


$dom = new DOMDocument;
$dom->loadHTML($html);
$links = $dom->getElementsByTagName('a');
foreach ($links as $link) {
    if (preg_match("/globo.com/i", $link->getAttribute('href'))) {
        $v = $link->getAttribute('href');
        $str = str_replace($v,'http://www.globo.com/?id='.sha1($v),$v);
        $str2 = str_replace($v,$str,$html);
        echo $str2."
"; } }

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

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

发布评论

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

评论(1

爱格式化 2024-10-28 14:13:42

您只需将 href 放回元素即可:

$dom = new DOMDocument;
$dom->loadHTML($html);
$links = $dom->getElementsByTagName('a');

foreach ($links as $link) {
    $href = $link->getAttribute('href');
    if (preg_match("/globo.com/i", $href)) {
        $newHref = 'http://www.globo.com/?id=' . sha1($v);
        $link->setAttribute('href', $newHref);
    }
}

然后使用 saveHTML() 导出完成的 HTML。

echo $dom->saveHTML();

You can just put the href back into the element:

$dom = new DOMDocument;
$dom->loadHTML($html);
$links = $dom->getElementsByTagName('a');

foreach ($links as $link) {
    $href = $link->getAttribute('href');
    if (preg_match("/globo.com/i", $href)) {
        $newHref = 'http://www.globo.com/?id=' . sha1($v);
        $link->setAttribute('href', $newHref);
    }
}

And then export the finished HTML using saveHTML().

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