pekkis/temporary-file-manager

Temporary file manager

v2.0.1 2018-08-17 09:59 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:39:25 UTC


README

A manager for application's temporary files. Deletes per-request.

Quickstart

Status

Full maintenance mode. If you want to maintain, holler.

<?php

use Pekkis\TemporaryFileManager\TemporaryFileManager;

$fm = new TemporaryFileManager($someDirectoryPath);

// Add some bytes
$ret = $fm->add($someContent);

// or add a file and it gets copied
$ret2 = $fm->addFile($someFilePath);

// Either way, you get a path to the temporary file
var_dump($ret);

// And when all the manager references are destroyed, typically at the end of a request, the files are deleted too.
unset($fm);