gpt4 book ai didi

php - 在 PHP 中使用 CURL 下载后 MD5 校验和不正确 - file_get_contents 工作正常

转载 作者:搜寻专家 更新时间:2023-10-31 21:18:57 26 4
gpt4 key购买 nike

我有一个脚本,我必须在其中下载一些文件并确保一切正常,我正在比较 MD5 校验和。

我发现使用 CURL 下载时校验和不正确。下面的脚本演示了这一点。它会下载 Google Logo 并比较校验和。

$url = 'http://www.google.com/intl/en_ALL/images/logo.gif';

echo md5_file($url)."\n";

$path = 'f1';
file_put_contents($path, file_get_contents($url));
echo md5_file($path)."\n";


$path = 'f2';
$out = fopen($path, 'wb');
$ch = curl_init();
curl_setopt($ch, CURLOPT_FILE, $out);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_exec($ch);
curl_close($ch);
echo md5_file($path)."\n";

输出是:

e80d1c59a673f560785784fb1ac10959
e80d1c59a673f560785784fb1ac10959
d83892759d58a1281e3f3bc7503159b5

前两个是正确的(当我使用 firefox 下载 Logo 时,它们与 MD5 校验和匹配)并且 curl 生成的结果不正确。

有什么解决办法吗?

谢谢你的帮助

更新:

有趣的是,下面的代码工作正常并产生正确的输出。这个问题似乎只在保存到文件时才存在。不幸的是,我必须直接保存到一个文件中,因为我正在下载的文件可能会变得相当大。

$path = 'f3';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
file_put_contents($path, curl_exec ($ch));
echo md5_file($path)."\n";
curl_close ($ch);

最佳答案

您缺少 fclose($out),这可能会导致 md5_file 看到不完整的文件。

关于php - 在 PHP 中使用 CURL 下载后 MD5 校验和不正确 - file_get_contents 工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2050941/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com