1. <i id='0Q5f9'><tr id='0Q5f9'><dt id='0Q5f9'><q id='0Q5f9'><span id='0Q5f9'><b id='0Q5f9'><form id='0Q5f9'><ins id='0Q5f9'></ins><ul id='0Q5f9'></ul><sub id='0Q5f9'></sub></form><legend id='0Q5f9'></legend><bdo id='0Q5f9'><pre id='0Q5f9'><center id='0Q5f9'></center></pre></bdo></b><th id='0Q5f9'></th></span></q></dt></tr></i><div id='0Q5f9'><tfoot id='0Q5f9'></tfoot><dl id='0Q5f9'><fieldset id='0Q5f9'></fieldset></dl></div>

    <small id='0Q5f9'></small><noframes id='0Q5f9'>

  2. <tfoot id='0Q5f9'></tfoot>

    <legend id='0Q5f9'><style id='0Q5f9'><dir id='0Q5f9'><q id='0Q5f9'></q></dir></style></legend>
      <bdo id='0Q5f9'></bdo><ul id='0Q5f9'></ul>

    1. 获取 ftp_put 进度

      Getting ftp_put progress(获取 ftp_put 进度)

      • <small id='GNkPi'></small><noframes id='GNkPi'>

        <legend id='GNkPi'><style id='GNkPi'><dir id='GNkPi'><q id='GNkPi'></q></dir></style></legend>
          <tbody id='GNkPi'></tbody>

          <bdo id='GNkPi'></bdo><ul id='GNkPi'></ul>

          1. <tfoot id='GNkPi'></tfoot>
              <i id='GNkPi'><tr id='GNkPi'><dt id='GNkPi'><q id='GNkPi'><span id='GNkPi'><b id='GNkPi'><form id='GNkPi'><ins id='GNkPi'></ins><ul id='GNkPi'></ul><sub id='GNkPi'></sub></form><legend id='GNkPi'></legend><bdo id='GNkPi'><pre id='GNkPi'><center id='GNkPi'></center></pre></bdo></b><th id='GNkPi'></th></span></q></dt></tr></i><div id='GNkPi'><tfoot id='GNkPi'></tfoot><dl id='GNkPi'><fieldset id='GNkPi'></fieldset></dl></div>

                本文介绍了获取 ftp_put 进度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我在 Web 服务器上有一个 php 脚本,它通过 ftp_put 将文件上传到另一个远程服务器.

                I have a php script on a web server that uploads a file to another remote server via ftp_put.

                如何向用户显示当前的上传进度?

                How can I display the current upload progress to the user?

                我见过的唯一类似的系统是用于从用户上传文件,使用 ajax 请求检查服务器上上传文件的本地大小.

                The only similar system I've seen is for file uploads from the user, with ajax requests to check the local size of the uploaded file on the server.

                等效的系统是对 Web 服务器的 ajax 请求,然后检查远程服务器上的文件大小并将该数据返回给用户的客户端脚本.

                The equivalent system would be ajax requests to the web server, that then checked file sizes on the remote server and returned that data to the user's clientscript.

                这对我来说似乎非常低效.有没有更好的办法?

                This seems horribly inefficient to me. Is there a better way?

                推荐答案

                使用 FTP URL 协议封装:

                $url = "ftp://username:password@ftp.example.com/remote/dest/path/file.zip";
                $local_path = "/local/source/path/file.zip";
                
                $size = filesize($local_path) or die("Cannot retrieve size file");
                
                $hout = fopen($url, "wb") or die("Cannot open destination file");
                $hin = fopen($local_path, "rb") or die("Cannot open source file");
                
                while (!feof($hin))
                {
                    $buf = fread($hin, 10240);
                    fwrite($hout, $buf);
                    echo "
                ".intval(ftell($hin)/$size*100)."%";
                }
                
                echo "
                ";
                
                fclose($hin);
                fclose($hout);
                

                这篇关于获取 ftp_put 进度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                  <small id='seIJy'></small><noframes id='seIJy'>

                  <i id='seIJy'><tr id='seIJy'><dt id='seIJy'><q id='seIJy'><span id='seIJy'><b id='seIJy'><form id='seIJy'><ins id='seIJy'></ins><ul id='seIJy'></ul><sub id='seIJy'></sub></form><legend id='seIJy'></legend><bdo id='seIJy'><pre id='seIJy'><center id='seIJy'></center></pre></bdo></b><th id='seIJy'></th></span></q></dt></tr></i><div id='seIJy'><tfoot id='seIJy'></tfoot><dl id='seIJy'><fieldset id='seIJy'></fieldset></dl></div>

                      <tbody id='seIJy'></tbody>
                      <bdo id='seIJy'></bdo><ul id='seIJy'></ul>
                    • <tfoot id='seIJy'></tfoot>

                          <legend id='seIJy'><style id='seIJy'><dir id='seIJy'><q id='seIJy'></q></dir></style></legend>