i used this code to save image file. but its returning an empty file .
function save_from_url($inPath,$outPath) {
$in= fopen($inPath, "rb");
$out= fopen($outPath, "wb");
while ($chunk = fread($in,8192))
{
fwrite($out, $chunk, 8192);
}
fclose($in);
fclose($out);
}
save_from_url('url/eg.php','flw.png');