devnullius/php-tmp-file
Composer 安装命令:
composer require devnullius/php-tmp-file
包简介
A convenience class for temporary files
关键字:
README 文档
README
A convenience class for temporary files.
Features
- Create temporary file with arbitrary content
- Delete file after use (can be disabled)
- Send file to client, either inline or with save dialog
- Save file locally
- Inject callback with custom file sender
Examples
<?php use devnullius\tmp\File; $file = new File('some content', '.html'); // send to client for download $file->send('home.html'); // save to disk $file->saveAs('/dir/test.html'); // Access file name and directory echo $file->getFileName(); echo $file->getTempDir();
If you want to keep the temporary file, e.g. for debugging, you can set the $delete property to false:
<?php use devnullius\tmp\File; $file = new File('some content', '.html'); $file->delete = false;
If you want to use other way to send files you can give callback as in example (Here is Yii2 response sendFile)
<?php use devnullius\tmp\File; $file = new File('some content', '.html'); $file->setResponseMethod(static function ($_filename, $filename) { \Yii::$app->response->sendFile($_filename, $filename); }); $fileName = 'greatFileName.txt'; // and if there is set any response method it's going to be executed $file->send($fileName);
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-09-14