标签: php curl
我正在尝试使用php,curl和preg-match从网页中提取特定的id。 我可以打印结果,但是当我尝试使用此id进行另一次卷曲时它不能正常工作。 我试图在再次卷曲之前修剪匹配的结果(id)但是没有用。
$pattern = '#result_id=(.*?)&#'; preg_match($pattern, $content, $searchId); $link = 'www.xyz.com/results?result_id='.$searchId[1];