访问变量中的图像网址

时间:2011-11-04 05:05:40

标签: php xml rss-reader

我正在阅读RSS订阅源并获得图片网址,现在我想将此图片存储在我的文件夹中。为此,我正在使用

$image=$movies->channel->item[i]->medium_image_url;

当我

echo $image

显示http://showmycode.co.in/supermob/app/webroot/img/uploads/product_images/medium/0a646_Bombay-Biryani1.jpg

然后我把我$url

$url = '$image';

$img = 'images/'.time().'.'.'jpg';
file_put_contents($img, file_get_contents($url));

和我

echo $url its show  only $image;

我发现了一个错误

  

警告:file_get_contents($ image)[function.file-get-contents]:   未能打开流:
       第36行的D:\ wamp \ www \ test_om \ rss \ rssfeed.php中没有此类文件或目录

如何存储此图像?

1 个答案:

答案 0 :(得分:3)

我认为错误就在这里:

$url = '$image';

删除引号并改为尝试:

$url = $image;