search
HomeBackend DevelopmentPHP TutorialHow to use TUS protocol in PHP to achieve breakpoint resume upload of large files

How to use TUS protocol in PHP to achieve breakpoint resume upload of large files

【Related learning recommendations: php graphic tutorial

Have you ever been troubled by uploading large files? If the file upload process is interrupted for some reason, can I continue uploading from the interrupted point without re-uploading the entire file? If you have such confusion, then please continue reading below.

In modern website applications, uploading files is very common. In any language, by using some tools, the file upload function can be realized. However, it is still a bit troublesome to deal with the need to upload large files.

Suppose you are uploading a large file at this time. About an hour has passed and the progress is 90%. If the Internet is suddenly disconnected or the browser crashes, the uploaded program will exit and you will have to start all over again. Really uncomfortable, right? What’s even more depressing is that if your Internet speed is very slow, then no matter how many times you try again, you will never be able to upload successfully.

In PHP, we can try to use the breakpoint resume function of the tus protocol to solve this problem.

What is tus?

Tus is an open protocol for file breakpoint resumption based on HTTP. Resume uploading means that whether it is interrupted by the user or unexpectedly due to network or other reasons, the upload can be resumed from where it was interrupted without starting over.

The Tus protocol was adopted by Vimeo in May 2017.

Why use tus?

Quoting Vimeo’s blog:

The reason why we decided to use tus is because it can be used in a concise and open form. Standardize the file upload process. This standardization helps API developers focus more on the logic of the application itself rather than the file upload process.

Another benefit of uploading in this way is that you can start uploading files on your laptop, and then move to your mobile phone or other device to continue uploading the same file, which can greatly improve the user experience. .

Picture: Tus rough workflow

Start

The first step is to load dependencies.

$ composer require ankitpokhrel/tus-php

tus-php is a pure PHP framework used for tus breakpoint resume protocol v1.0.0, which perfectly realizes the interaction between the server and the client.

Update: v3 of Vimeo’s official PHP library now uses TusPHP.

Create a server that handles requests

You can create a server as follows.

// server.php

$server   = new \TusPhp\Tus\Server('redis');
$response = $server->serve();

$response->send();

exit(0); // 退出当前 PHP 进程

You need to configure your server so that it can handle specific The terminal responds. If you use Nginx, you can configure it as follows:

# nginx.conf

location /files {
    try_files $uri $uri/ /path/to/server.php?$query_string;
}

Assume that the URL of our server is http://server.tus.local. Therefore, based on our above Nginx configuration, we can access our tus terminal through http://server.tus.local/files..

Endpoint configuration based on RESTful style:

# 获取有关服务器目前配置的信息\
OPTIONS /files

# 检查上传的文件是否合法\
HEAD /files/{upload-key}

# 创建\
POST /files

# 修改\
PATCH /files/{upload-key}

# 删除\
DELETE /files/{upload-key}

View the Agreement Details for more information about routing.

If you are using a framework similar to Laravel, then you do not need to define these in the configuration file. You can directly define routes to access the basic endpoint of tus. We will introduce the relevant details in another tutorial.

Use tus-php client to handle uploads

With the server in place, the client can upload files in chunks. Let's first create a simple HTML form to get user input.


         

After submitting the form, we need to follow a few steps to process the upload.

  1. Create a tus-php client object
// Tus client

$client = new \TusPhp\Tus\Client('http://server.tus.local');

The first parameter in the above code is your tus server address.

2. Initialize the client using file metadata

In order to ensure the uniqueness of uploaded files, we need to uniquely identify each uploaded file. In this way, when the file is interrupted and subsequently transmitted, the server can clearly identify which fragments belong to the same file. This identification code can be specified by yourself or generated by the system.

// 设置标识码和文件元数据

$client->setKey($uploadKey)
    ->file($_FILES['tus_file']['tmp_name'], 'your file name');

If you don’t want to specify the identification code, you can write it like this, and the system will automatically generate it:

$client->file($_FILES['tus_file']['tmp_name'], 'your file name');

$uploadKey = $client->getKey(); // Unique upload key

3. Upload files in parts

// $chunkSize 是以字节为单位的,例如 5000000 等于 5 MB

$bytesUploaded = $client->upload($chunkSize);

When When you want to resume the transmission of the next block, you can bring the same identification code parameter to resume the transmission.

// 在下一个请求中续传文件

$bytesUploaded = $client->setKey($uploadKey)->upload($chunkSize);

After all files are uploaded, by default, the server will use sha256 to verify the sum of the files to ensure that there are no missing files.

使用 tus-js-client 客户端处理文件上传

tus 协议的团队还开发了一个模块化的文件上传插件  Uppy。这个插件可以在官方 tus-js-client 和 tus-php 服务器之间建立连接。也就是说我们可以使用 php 配合 js 来实现文件上传了。

uppy.use(Tus, {
  endpoint: 'https://server.tus.local/files/', // 你的 tus 服务器
  resume: true,
  autoRetry: true,
  retryDelays: [0, 1000, 3000, 5000]
})

更多细节可以查看 uppy 的文档, 这里 还有些例子可以供你参考。

分块上传

tus-php 服务器支持 concatenation 扩展,可以把多次上传的文件合为一个文件。因此,我们可以在客户端支持并行上传以及非连续的分块文件上传。

使用 tus-php 实现分块上传

tus-partial-upload.php

<?php // 文件唯一标识码
$uploadKey = uniqid();

$client->setKey($uploadKey)->file('/path/to/file', 'chunk_a.ext');

// 从第 1000  个字节开始上传 10000 字节
$bytesUploaded = $client->seek(1000)->upload(10000);
$chunkAkey     = $client->getKey();

// 从 第 0 个字节开始上传 10000 字节
$bytesUploaded = $client->setFileName('chunk_b.ext')->seek(0)->upload(1000);
$chunkBkey     = $client->getKey();

// 从第 11000 个字节  (10000 +  1000) 开始上传剩余的字节
$bytesUploaded = $client->setFileName('chunk_c.ext')->seek(11000)->upload();
$chunkCkey     = $client->getKey();

// 把分块上传的文件组合起来
$client->setFileName('actual_file.ext')->concat($uploadKey, $chunkAkey, $chunkBkey, $chunkCkey);

分块上传的完整例子 在这里.

总结

由于 tus-php 项目 本身还出于初级阶段,后面可能还会有一些改动。在 example 文件夹里,有三个不同的例子供你参考。如果任何问题或者建议,欢迎留言交流。

Happy Coding!

相关学习推荐:php编程(视频)

The above is the detailed content of How to use TUS protocol in PHP to achieve breakpoint resume upload of large files. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:learnku. If there is any infringement, please contact admin@php.cn delete
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.