uRLからファイルをダウンロードしようとしていますが、ブラウザーを使用するとダウンロードダイアログが機能しますが、このコードを使用するとサーバー上の新しいファイルが空のままになります。
$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);
uRLの例: https://myapps.gia.edu/ReportCheckPortal/downloadReport.do?reportNo=1152872617&weight=1.35
私はこれを使ってこの問題を解決しました:
curl_setopt($ch, CURLOPT_SSLVERSION,3);
これが最終的なコードです:
$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);
Https接続を使用したURL。次のカールオプションも使用します。
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
fputs
を使用してバイト長を指定する必要がありますfile_put_contents($destination, $data);
を使用してみてください