gpt4 book ai didi

php - 使用 PHP 代码从 URL 下载图像?

转载 作者:IT王子 更新时间:2023-10-29 00:21:21 25 4
gpt4 key购买 nike

<分区>

如何使用 php 从 URL(例如:https://www.google.com/images/srpr/logo3w.png)下载图像然后保存?这是我到目前为止想出的,它在“file_put_contents”函数中给我一个错误。

<form method="post" action="">
<textarea name="text" cols="60" rows="10">
</textarea><br/>
<input type="submit" class="button" value="submit" />
</form>

<?php
$img = "no image";
if (isset($_POST['text']))
{
$content = file_get_contents($_POST['text']);
$img_path = '/images/';
file_put_contents($img_path, $content);
$img = "<img src=\"".$img_path."\"/>";
}
echo $img;
?>

它给我错误:

[function.file-put-contents]: 无法打开流:C:\wamp\www\img.php 中没有这样的文件或目录

/images/目录与php文件同级,可写。

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