cars24/php-tmpfile
Composer 安装命令:
composer require cars24/php-tmpfile
包简介
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
Examples
<?php use mikehaertl\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 mikehaertl\tmp\File; $file = new File('some content', '.html'); $file->delete = false;
统计信息
- 总下载量: 24
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-12