(PHP 4, PHP 5)
tmpfile — Crea un file temporaneo
Crea un file temporaneo con un nome univoco in modalitĂ di lettura-scrittura (w+), restituendo un riferimento al file simile a quello tornato da fopen(). Il file viene automaticamente cancellato una volta chiuso (usando fclose()), o quando lo script termina.
Per dettagli, consulta la documentazione del tuo sistema sulla funzione tmpfile(3), così come il file haeader stdio.h.
Example #1 tmpfile() example
<?php
$temp = tmpfile();
fwrite($temp, "writing to tempfile");
fseek($temp, 0);
echo fread($temp, 1024);
fclose($temp); // this removes the file
?>
Il precedente esempio visualizzerĂ :
writing toi tempfile
Vedere anche tempnam().