mmeyer2k / temper
Intelligent PHP temporary files.
dev-master
2016-08-03 03:19 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2026-03-01 00:21:14 UTC
README
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.