A simple class for creating temporary files in PHP
Usage example
$file = new File("Some content"); // Create a temporary file with specified content
$file->setContent("Some other content"); // Set file content
$file->saveAs("some_file.txt"); // Save file
Documentation not yet complete