I am accessing images from another website. I am getting "failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request " error when copying 'some(not all)' images. here is my code.
$img=$_GET['img']; //another website url
$file=$img;
function getFileextension($file) {
return end(explode(".", $file));
}
$fileext=getFileextension($file);
if($fileext=='jpg' || $fileext=='gif' || $fileext=='jpeg' || $fileext=='png' || $fileext=='x-png' || $fileext=='pjpeg'){
if($img!=''){
$rand_variable1=rand(10000,100000);
$node_online_name1=$rand_variable1."image.".$fileext;
$s=copy($img,"images/".$node_online_name1);
}
i am copying images from another site. when ever copy function executes then i am getting this error. Warning: copy(http://www.xyz.com/store/images/uploads/2009 /RIBDI018 fancy blue white diamond ring.jpg) [function.copy]: failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request in /home/content/22/7101122/html/getimage.php on line 17