PHP code example of sharapeco / file-download

1. Go to this page and download the library: Download sharapeco/file-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/ */

    

sharapeco / file-download example snippets


$filePath = '/path/to/file';

$download = sharapeco\HTTP\FileDownload::initWithFile($filePath);
$download->download('download-filename');

$content = 'This is the content of the file';

$download = sharapeco\HTTP\FileDownload::initWithContent($content);
$download->download('download-filename');

$filePath = '/path/to/pdf';

$download = sharapeco\HTTP\FileDownload::initWithFile($filePath);
$download->showPDF('filename.pdf');