im essayant de télécharger un fichier à partir d'une URL, lorsque j'utilise le navigateur, la boîte de dialogue de téléchargement fonctionne mais lorsque j'utilise ce code, le nouveau fichier sur mon serveur reste vide.
$ch = curl_init();
$source = "https://myapps.gia.edu/ReportCheckPortal/downloadReport.do?reportNo=$row['certNo']&weight=$row['carat']";
curl_setopt($ch, CURLOPT_URL, $source);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec ($ch);
curl_close ($ch);
$destination = "./files/certs/$row['certNo'].pdf";
$file = fopen($destination, "w+");
fputs($file, $data);
fclose($file);
exemple d'url: https://myapps.gia.edu/ReportCheckPortal/downloadReport.do?reportNo=1152872617&weight=1.35
J'ai résolu ce problème en utilisant ceci:
curl_setopt($ch, CURLOPT_SSLVERSION,3);
Voici le code final:
$source = "https://myapps.gia.edu/ReportCheckPortal/downloadReport.do?reportNo=1152872617&weight=1.35";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $source);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSLVERSION,3);
$data = curl_exec ($ch);
$error = curl_error($ch);
curl_close ($ch);
$destination = "./files/test.pdf";
$file = fopen($destination, "w+");
fputs($file, $data);
fclose($file);
Votre URL en utilisant une connexion https. Utilisez également l'option de boucle suivante.
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
fputs
sur les fichiers plus volumineux, vous devez spécifier la longueur en octetsfile_put_contents($destination, $data);