我必须下载一个png文件并将其用于php中的图像处理。 我想保存这个图片: /favicon?domain=http://facebook.com/">https://plus.google.com//favicon?domain=http://facebook.com/ 进入我的本地文件夹并对其执行图像处理操作。
当我这样做时,它的工作正常:
$url = 'http://s.wordpress.org/about/images/color-blue.png';
$img = 'try1.png';
file_put_contents($img, file_get_contents($url));
但这不起作用,try1.png正在创建0kb
$url = "https://plus.google.com/_/favicon?domain=http://facebook.com/";
$img = 'try1.png';
file_put_contents($img, file_get_contents($url));
请帮忙。 问候, Suyash
答案 0 :(得分:1)
请试试这个:
<?php
$url = "https://plus.google.com/_/favicon?domain=http://facebook.com/";
$img = 'try1.png';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
file_put_contents($img, $result);
?>