猿问

Laravel ftp 上传与 tus

我需要使用 tus 通过 ftp 上传大文件,因此文件上传的部分很小。

可以通过这个包上传 tu s3 和 tus,但不幸的是他们不支持 ftp,我在网上找不到任何 ftp tus 包或解决方案。有人有提示或建议吗? https://github.com/rafaeltovar/php-tus-aws-s3 https://github.com/ankitpokhrel/tus-php


手掌心
浏览 93回答 1
1回答

梦里花落0921

我设法通过本文中的 php chunk upload 来完成此操作:&nbsp;https://artisansweb.net/how-to-implement-chunk-upload-in-php/php中分块上传的源代码:$tmpfile = 存储路径(路径);&nbsp; &nbsp; $orig_file_size = filesize($tmpfile);&nbsp; &nbsp; $chunk_size = 256; // chunk in bytes&nbsp; &nbsp; $upload_start = 0;&nbsp; &nbsp; $handle = fopen($tmpfile, "rb");&nbsp; &nbsp; $fp = fopen('ftp://USERNAME:PASSWORD@HOST:21//TARGETDIR/FILENAME', 'w');&nbsp; &nbsp; while($upload_start < $orig_file_size) {&nbsp; &nbsp; &nbsp; &nbsp; $contents = fread($handle, $chunk_size);&nbsp; &nbsp; &nbsp; &nbsp; fwrite($fp, $contents);&nbsp; &nbsp; &nbsp; &nbsp; $upload_start += strlen($contents);&nbsp; &nbsp; &nbsp; &nbsp; fseek($handle, $upload_start);&nbsp; &nbsp; }&nbsp; &nbsp; fclose($handle);&nbsp; &nbsp; fclose($fp);
随时随地看视频慕课网APP
我要回答