spatie/temporary-directory
Composer 安装命令:
composer require spatie/temporary-directory
包简介
Easily create, use and destroy temporary directories
README 文档
README
This package allows you to quickly create, use and delete a temporary directory in the system's temporary directory.
Here's a quick example on how to create a temporary directory and delete it:
use Spatie\TemporaryDirectory\TemporaryDirectory; $temporaryDirectory = (new TemporaryDirectory())->create(); // Get a path inside the temporary directory $temporaryDirectory->path('temporaryfile.txt'); // Delete the temporary directory and all the files inside it $temporaryDirectory->delete();
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
composer require spatie/temporary-directory
Usage
Creating a temporary directory
To create a temporary directory simply call the create method on a TemporaryDirectory object.
(new TemporaryDirectory())->create();
Alternatively, use the static make method on a TemporaryDirectory object.
TemporaryDirectory::make();
By default, the temporary directory will be created in a timestamped directory in your system's temporary directory (usually /tmp).
Naming your temporary directory
If you want to use a custom name for your temporary directory instead of the timestamp call the name method with a string $name argument before the create method.
(new TemporaryDirectory()) ->name($name) ->create();
By default an exception will be thrown if a directory already exists with the given argument. You can override this behaviour by calling the force method in combination with the name method.
(new TemporaryDirectory()) ->name($name) ->force() ->create();
Setting a custom location for a temporary directory
You can set a custom location in which your temporary directory will be created by passing a string $location argument to the TemporaryDirectory constructor.
(new TemporaryDirectory($location)) ->create();
The make method also accepts a $location argument.
TemporaryDirectory::make($location);
Finally, you can call the location method with a $location argument.
(new TemporaryDirectory()) ->location($location) ->create();
Setting custom permissions for a temporary directory
By default, the temporary directory will be created with permissions 0777. You can customize these permissions by calling the permission method with an integer $permission argument before the create method.
(new TemporaryDirectory()) ->permission(0755) ->create();
Determining paths within the temporary directory
You can use the path method to determine the full path to a file or directory in the temporary directory:
$temporaryDirectory = (new TemporaryDirectory())->create(); $temporaryDirectory->path('dumps/datadump.dat'); // return /tmp/1485941876276/dumps/datadump.dat
Emptying a temporary directory
Use the empty method to delete all the files inside the temporary directory.
$temporaryDirectory->empty();
Deleting a temporary directory
Once you're done processing your temporary data you can delete the entire temporary directory using the delete method. All files inside of it will be deleted.
$temporaryDirectory->delete();
Deleting a temporary directory when the object is destroyed
If you want to automatically have the filesystem directory deleted when the object instance has no more references in
its defined scope, you can enable deleteWhenDestroyed() on the TemporaryDirectory object.
function handleTemporaryFiles() { $temporaryDirectory = (new TemporaryDirectory()) ->deleteWhenDestroyed() ->create(); // ... use the temporary directory return; // no need to manually call $temporaryDirectory->delete()! } handleTemporaryFiles();
You can also call unset() on an object instance.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Postcardware
You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Kruikstraat 22, 2018 Antwerp, Belgium.
We publish all received postcards on our company website.
Credits
License
The MIT License (MIT). Please see License File for more information.
spatie/temporary-directory 适用场景与选型建议
spatie/temporary-directory 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 101.02M 次下载、GitHub Stars 达 968, 最近一次更新时间为 2017 年 01 月 31 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「spatie」 「temporary-directory」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 spatie/temporary-directory 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 spatie/temporary-directory 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 spatie/temporary-directory 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Receive webhooks in Laravel apps
Easily optimize images using PHP
Store your application settings
Alfabank REST API integration
Add tags and taggable behaviour to your Laravel app
Speed up a Laravel application by caching the entire response additions
统计信息
- 总下载量: 101.02M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 973
- 点击次数: 21
- 依赖项目数: 206
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2017-01-31