gpt4 book ai didi

php - 使用 file_get_contents 从 url 获取图像

转载 作者:行者123 更新时间:2023-12-02 17:47:45 25 4
gpt4 key购买 nike

这是我的 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;
}

最佳答案

@h2ooooooo actually bro im not looking for a single image ... i just want to save this 9 images in a folder

<?php
for ($i = 2 ; $i <= 10; $i++) {
$imageName = "rate-bar-bg-" . $i . ".jpg";
$imageContent = file_get_contents("http://www.lafourchette.com/p-3.3.0/default/" . $imageName);
file_put_contents($imageName, $imageContent);
}
?>

关于php - 使用 file_get_contents 从 url 获取图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12580056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com