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]);

PHP获取指定网页的所有链接_第1张图片

你可能感兴趣的:(正则表达式,php,爬虫)