1. 程式人生 > 其它 >PHP獲取指定網頁的所有連結

PHP獲取指定網頁的所有連結

技術標籤:正則表示式php爬蟲


$string = file_get_contents("https://fanyi.qq.com/");
$preg = '/.*? href="([http|https].*?)".*?/';
preg_match_all($preg,$string,$march_arr);

var_dump($march_arr[1]);

在這裡插入圖片描述