這是我的php代碼,它僅從9中獲取第一個圖像,但是當我手動檢查URL時,所有9圖像URL都正確形成,我試着用CURL代碼,但循環是不工作,讓我知道我做錯了什麼?使用file_get_contents從url中獲取圖像
<?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;
}
Thx再次:) – swapnesh