簡體   English   中英

PHP用錨文本替換網址

[英]PHP replace urls with Anchor text

$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>

我想成為這個

請幫我。

<?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;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM