<?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.';
}
?>
我不知道出了什么问题,我认为我的路径是正确的。