php Protocol "https" not supported or disabled in libcurl
phpcurl请求https地址一直返回返回false按照以前做法是在请求中添加以下参数对https做处理curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);禁止cURL验证对等证书curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);设置为1是检查服务器SSL证书中是否存在一个公用名(commonname)。译