mmeyer2k / temper
Intelligent PHP temporary files.
dev-master
2016-08-03 03:19 UTC
Requires
- php: >=5.3.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-08-29 01:41:41 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.