mmeyer2k / temper
Intelligent PHP temporary files.
Installs: 5 879
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-10-29 04:20:00 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.