PHP用Anchor文本替换url

时间:2017-06-02 02:51:38

标签: php regex dom replace

$x = 'A fox was <a href="/xyz/dancingwith">Dancing with</a> light. The night <a href="/xyz/treeare">tree are</a> growing.';

I want to become this

$x = 'A fox was <a href="/xyz/dancing-with">Dancing with</a> light. The night <a href="/xyz/tree-are">tree are</a> growing.';

我想替换所有

<a href="xyz">x y z</a> to <a href="x-y-z">x y z</a>

<a href="xaybzc">xA yB zC</a> to <a href="xa-yb-zc">xA yB zC</a>

我想成为这个

请帮助我。

1 个答案:

答案 0 :(得分:2)

<?php

$x = 'A fox was <a href="/xyz/dancingwith">Dancing with</a> light. The night <a href="/xyz/treeare">tree are</a> growing.';

$doc = new DOMDocument;
$doc->loadHTML($x);
$anchors = $doc->getElementsByTagName('a');
$len = $anchors->length;
for($i = 0; $i < $len; $i++) {
    $newPath = preg_replace('/\s+/', '-',strtolower($anchors->item($i)->nodeValue));
    $oldHref = $anchors->item($i)->getAttribute('href');
    $url = explode('/', $oldHref);
    array_pop($url);
    array_push($url, $newPath);
    $newUrl = implode('/', $url);


        $anchors->item($i)->setAttribute('href', $newUrl);

}
$newHTML = $doc->saveHTML();
echo $newHTML;