mmeyer2k/temper

Intelligent PHP temporary files.

dev-master 2016-08-03 03:19 UTC

This package is auto-updated.

Last update: 2024-04-29 03:07:09 UTC


README

Build Status

Fast and intuitive temp file creation.

# Create a temp file instance
$temp = new \Temper\Temper('content to store in temp file');

# Return path to temp file (outputs something like "/tmp/[random file name]")
echo $temp->path();

# Return the temp file size in bytes
$size = $temp->size();

# Delete the temp file when you are done with it
$temp->destroy();

Thats all there is to it.