Skip to content

Painless temporary files and directories that clean up after themselves.

License

Notifications You must be signed in to change notification settings

icecave/temptation

Repository files navigation

Temptation

Build Status Code Coverage Latest Version

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.

About

Painless temporary files and directories that clean up after themselves.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages