icecave/temptation
最新稳定版本:1.0.0
Composer 安装命令:
composer require icecave/temptation
包简介
Painless temporary files and directories that clean up after themselves.
README 文档
README
Temptation is a simple PHP library for creating temporary files and directories that clean up after themselves.
composer require icecave/temptation
Example
use Icecave\Temptation\Temptation; // Use the temptation object to create files and directories ... $temptation = new Temptation(); // Create a temporary file ... $file = $temptation->createFile(); // Use the temporary file ... file_put_contents($file->path(), 'This is my temp file.'); // Don't do anything else! // The temporary file is automatically deleted when the $file object goes out of scope.
统计信息
- 总下载量: 9.32k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 2
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-10-02