Warning: file_put_contents(a/rss.png) [function.file-put-contents]: failed to open stream: No such file or directory in /nfs/c01/h06/mnt/45373/domains/dev.bowdenweb.com/html/php/download-img-remotely.php on line 5
<?php
// $image = file_get_contents('http://www.url.com/image.jpg');
// file_put_contents('/images/image.jpg', $image); //Where to save the image on your server
$image = file_get_contents("http://www.catswhocode.com/blog/wp-content/themes/cat-stellation/images/rss.png");
file_put_contents('a/rss.png', $image);
?>