$websitecontent = file_get_contents('http://website.com');
$variable1 = 'Nissan_GTR';
$variable2 = '2017';
preg_match('~<a href="(.*?)" ><img src="https://website.com/perma/$variable1_$variable2.jpg"~',$websitecontent,$results);
print_r($results);
exit();
正如您在上面看到的那样,我正在尝试使用pregmatch中的变量。不知道怎么做。在问问题之前,我确实尝试过搜索,但是没有一个能真正帮助我解决这个问题。感谢
答案 0 :(得分:2)
400px
您需要将变量与$websitecontent = file_get_contents('http://website.com');
$variable1 = 'Nissan_GTR';
$variable2 = '2017';
preg_match('~<a href="(.*?)" ><img src="https://website.com/perma/' . $variable1 . '_' . $variable2 . '.jpg"~',$websitecontent,$results);
print_r($results);
exit();