PHP上传后如何获取文件的SHA

发布于 2024-12-12 19:08:16 字数 206 浏览 0 评论 0原文

我有一个站点,可以将文件从 URL 复制到我的服务器。我需要一种在复制文件后获取文件 SHA 的方法。

我使用 @copy($url,$upload_path) 复制文件,但这返回一个布尔值,我需要返回文件的东西。有这样的东西存在吗?

我需要稍后获取 sha1_file($file) 文件

谢谢!

I have a site which copies a file from a URL to my sever. I need a way of getting a SHA of the file after it has been copied.

I was using @copy($url,$upload_path) to copy the file but this returns a boolean I need something that returns the file. Does anything like that exist?

I need to get the file afterwards for sha1_file($file)

Thank!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乞讨 2024-12-19 19:08:16

您只需

if (@copy($url,$upload_path)) {
  $hash = sha1_file($upload_path);
}

$upload_path 已包含需要传递给 sha1_file() 的值即可。

而且,作为一般规则,@ 运算符是邪恶的。我承认它的这种特殊用法可以说是有效的,但根据经验,它应该被视为最后的手段。

You can just

if (@copy($url,$upload_path)) {
  $hash = sha1_file($upload_path);
}

$upload_path already contains the value you would need to pass to sha1_file().

And, as a general rule, the @ operator is evil. I will admit that this particular usage of it is arguably valid, but as a rule of thumb it should treated as a last resort.

冬天旳寂寞 2024-12-19 19:08:16

sha1_file 采用文件名。您提供的用于复制的 $upload_path 是一个文件名。您应该能够执行以下操作:

sha1_file($upload_path)

获取您的 sha1。

sha1_file takes a filename. The $upload_path you've supplied to copy is a filename. You should be able to do:

sha1_file($upload_path)

to get your sha1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文