这是我的 php 代码,它只从 9 个图像中获取第一个图像,尽管当我手动检查 URL 时,所有 9 个图像 URL 都正确形成,我也用 CURL 尝试了这个代码,但是循环不起作用,让我知道我是什么做错了吗?
<?php
for($i=2 ; $i <= 10 ; $i++ ){
header('Content-type: image/jpeg;');
$url = "http://www.lafourchette.com/p-3.3.0/default/rate-bar-bg-".$i.".jpg";
$mycontent = file_get_contents($url);
echo $mycontent;
}