tmpfile

(PHP 3>= 3.0.13, PHP 4 , PHP 5)

tmpfile -- Crea un file temporaneo

Descrizione

resource tmpfile ( void )

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.

Esempio 1. tmpfile() example

<?php
         $temp
= tmpfile();
         
fwrite($temp, "writing to tempfile");
         
fseek($temp, 0);
         echo
fread($temp, 1024);
         
fclose($temp);  // this removes the file
         
?>

The above example will output:

writing toi tempfile

Vedere anche tempnam().

Hosting by: hurra.com
Generated: 2007-01-26 17:56:35