你好朋友我想将图像从我的 wamp 服务器保存到我在下面的代码中使用的特定 wamp 项目文件夹中,这段代码向我显示了保存图像的对话框,但我想从 wamp 服务器调用图像并将其保存在我的文件夹中
<?php
header('Content-type: image/png');
$imageUrl = "http://ip/demo/images/itemimage/Platters.png";
$filename = realpath(dirname("http://ip/demo/images/itemimage/Platters.png"))."/image1.png";
$handle = file_get_contents($imageUrl);
file_put_contents($filename, $handle);
?>
此代码不会自动将图像下载到我的文件夹中,任何人都可以帮助我吗?我用上面的代码得到了这个错误