0
    <?php
$img = 'http://ecx.images-amazon.com/images/I/41pg1dHauUL._SL75_.jpg';
$target_path = 'product-images/';
$target_path= $target_path.basename($img);

if(move_uploaded_file($img,$target_path)){
    echo '<br>Success.';
}
else {
    echo '<br>Error.';
}
?>

我不知道出了什么问题,我认为我的路径是正确的。

4

1 回答 1

1

这可能会帮助你。

    <?php
    $img = 'http://ecx.images-amazon.com/images/I/41pg1dHauUL._SL75_.jpg';
    $target_path = 'CHANGEYOURPATH/CHANGEYOURIMAGENAME.CHANGEYOUREXTENSION';

if (file_put_contents($target_path, file_get_contents($img)))
{
    echo "Success";
}

else
{
    echo "Error!";
}



 // EXAMPLE

    $img = 'http://ecx.images-amazon.com/images/I/41pg1dHauUL._SL75_.jpg';
        $target_path = 'C:\TEST\image.jpg';
        file_put_contents($target_path, file_get_contents($img));
        ?>
于 2012-10-10T03:10:56.223 回答