PHP code example of dpsoft / psr7partial-download
1. Go to this page and download the library: Download dpsoft/psr7partial-download library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dpsoft / psr7partial-download example snippets
/** @var Psr\Http\Message\ServerRequestInterface */
$request = ;
/** @var Psr\Http\Message\ResponseInterface */
$response = ;
$serve = new Dpsoft\psr7PartialDownload\Serve($request,$response);
/** @var Psr\Http\Message\ResponseInterface */
$response = $serve->download($filePath,$fileName);