web-dev-qa-db-fra.com

PHP CURL Download File

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

14
user3376311

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

Votre URL en utilisant une connexion https. Utilisez également l'option de boucle suivante.

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
2
Sabuj Hassan
  1. Avez-vous vérifié si le résultat contient réellement des données?
  2. avec fputs sur les fichiers plus volumineux, vous devez spécifier la longueur en octets
  3. Essayez d'utiliser file_put_contents($destination, $data);
1
Rok Nemet