如何获取发布到 php 的二进制数据的大小?

发布于 2024-11-08 19:13:42 字数 331 浏览 0 评论 0原文

我的第 3 方应用程序创建一个图像并将其存储在变量中,然后将其发布到服务器上的 php。出于安全考虑,我需要限制上传大小。现在二进制数据尚未写入文件,我将如何获取其大小?

这是代码:

<?php

$_data = $_POST['data']; //get the binary data from the client side.

    if($_data !=""){
       $handle = fopen($_path."/".$_ref.".png", "w");
       fwrite($handle,$_data);
    }

?>

My 3rd party app creates an image and store it in a variable and then post it to a php on the server. for security matters, I need to limit the upload size. Now that the binary data is not written to a file yet, how would I go around getting its size?

Here is the code:

<?php

$_data = $_POST['data']; //get the binary data from the client side.

    if($_data !=""){
       $handle = fopen($_path."/".$_ref.".png", "w");
       fwrite($handle,$_data);
    }

?>

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

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

发布评论

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

评论(2

掐死时间 2024-11-15 19:13:42

使用

$length = strlen($_POST['data']);

Use

$length = strlen($_POST['data']);
画骨成沙 2024-11-15 19:13:42

使用 $_FILES['filename']['size'] 获取上传的文件大小

use $_FILES['filename']['size'] to get the uploaded filesize

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