Voting

: min(seven, nine)?
(Example: nine)

The Note You're Voting On

Anonymous
8 years ago
Since this function may not be working in some environments, here is a simple workaround:

function temporaryFile($name, $content)
{
$file = DIRECTORY_SEPARATOR .
trim(sys_get_temp_dir(), DIRECTORY_SEPARATOR) .
DIRECTORY_SEPARATOR .
ltrim($name, DIRECTORY_SEPARATOR);

file_put_contents($file, $content);

register_shutdown_function(function() use($file) {
unlink($file);
});

return $file;
}

<< Back to user notes page

To Top