Getting ftp_put progress(获取 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 进度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取 ftp_put 进度
基础教程推荐
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
