sharapeco / file-download
为PHP文件制作下载
v1.0.0
2019-09-17 01:47 UTC
Requires
- php: ^5.4.0 || ^7.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-09-17 12:26:01 UTC
README
- 从文件制作下载
- 从内容制作下载
- IE 9+ (ja), Safari 5+ (ja), Android 4.4+, Chrome, Firefox, Edge 支持
用法
从文件
$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');
使用文件名在浏览器中显示PDF
$filePath = '/path/to/pdf'; $download = sharapeco\HTTP\FileDownload::initWithFile($filePath); $download->showPDF('filename.pdf');