如何使用preg_match_all和file_get_contents

时间:2017-09-22 19:37:53

标签: php sql file-get-contents preg-match-all

我希望使用标题中提到的功能获得多个结果,到目前为止,我只能使用preg_match获得唯一的值。我想获得所有结果的数组,然后将它们记录在我的数据库中。

这是我目前的代码:

$casturl = "https://www.themoviedb.org/movie/353491-the-dark-tower/cast";
$cast = file_get_contents($casturl);
preg_match_all('|<img class="profile lazyload fade" data-sizes="auto" data-src="(.*?)" data-srcset="|' , $cast , $castimg );    
print_r($castimg);

当我打印结果时,我只是给出:数组([0] =&gt;数组([0] =&gt;

我确保演员阵容包含我想要的东西。我已经尝试了很多可能性而且什么都没有:(

2 个答案:

答案 0 :(得分:0)

试试这个。我希望你抓住所有图片网址

$casturl = "https://www.themoviedb.org/movie/353491-the-dark-tower/cast";
$cast = file_get_contents($casturl);
preg_match_all('#<img class="profile lazyload fade" data-sizes="auto" data-src="(.*?)" data-srcset="#' , $cast , $castimg );    
print_r($castimg[1]);

输出

Array ( [0] => https://image.tmdb.org/t/p/w66_and_h66_bestv2/d9NkfCwczP0TjgrjpF94jF67SK8.jpg [1] => https://image.tmdb.org/t/p/w66_and_h66_bestv2/jdRmHrG0TWXGhs4tO6TJNSoL25T.jpg [2] => https://image.tmdb.org/t/p/w66_and_h66_bestv2/gzjmHOSM1vnwnXpU737tdu9YjOu.jpg [3] => https://image.tmdb.org/t/p/w66_and_h66_bestv2/zYiS1KJKEoLstzFA3DV5gwszzSC.jpg [4] => https://image.tmdb.org/t/p/w66_and_h66_bestv2/vDuvdRoliXbjQrptk7GVs4Qj07S.jpg ......)

答案 1 :(得分:-1)

如果您使用

var_dump($castimg);

代替

print_r($castimg);

你会看得更清楚。