下载并保存远程图片
$image = file_get_contents('http://www.php100.com/image.jpg');
file_put_contents('/images/image.jpg', $image);
file_get_contents()抓取 https 地址时出错:
SSL operation failed with code 1. OpenSSL Error message
原因是证书校验不通过,可以设置忽略证书校验:
$option=array( 'ssl'=>array('verify_peer' => false, 'verify_peer_name' => false) ); $stream=stream_context_create($option); file_get_contents($url, false, $stream);