Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Php

Visibility

unlisted

Author

legacy-anonymous

Created

2019-08-22T18:18:29Z

Updated

2019-08-22T18:18:29Z

<?php

function getAllHrefs($html) {
    $doc = new \DOMDocument();
    $doc->loadHTML($html);

    $anchors = $doc->getElementsByTagName("a");
    $hrefs = [];
    foreach ($anchors as $a) {
        $hrefs[] = $a->getAttribute("href");
    }
    return $hrefs;
}

$html = '
<a href=https://svetavto.com.ua/catalog.php?idg=21  >
<a href="/stati/">
<a class="rassol2" href="http://svetavto.com.ua/stati/">
';

print_r(getAllHrefs($html));
INFO