-1

我正在使用此 php 代码从 url 中提取所有链接,但这会混合绝对和相对,但我只想在此脚本中将所有链接转换为绝对链接

   <?
$request_url ='http://www.qualitycodes.com';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);    // The url to get links from
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // We want to get the respone
$result = curl_exec($ch);

$regex='|<a.*?href="(.*?)"|';
preg_match_all($regex,$result,$parts);
$links=$parts[1];
foreach($links as $link){
    echo $link."<br>";
}
curl_close($ch);
?>

我希望所有 url 都是绝对的

4

1 回答 1

0

在相对 URL 前加上当前页面的绝对 URL。

于 2013-10-26T10:43:04.637 回答