1

我必须下载一个 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));

请帮忙。问候, 苏亚什

4

1 回答 1

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);

?>
于 2013-05-26T07:22:11.407 回答