En son web geliştirme öğreticiler
 

PHP tmpfile() Function


<Komple PHP Dosya Sistemi Referans

Tanımı ve Kullanımı

tmpfile() fonksiyonu okuma-yazma eşsiz adla bir geçici dosya oluşturur (w+) modu.

Sözdizimi

tmpfile()

İpuçları ve Notlar

Note: onunla kapatıldığında geçici dosya otomatik olarak kaldırılır fclose() veya komut sona erdiğinde.

Tip: Ayrıca bkz tempnam()


Örnek

<?php
$temp = tmpfile();

fwrite($temp, "Testing, testing.");
//Rewind to the start of file
rewind($temp);
//Read 1k from file
echo fread($temp,1024);

//This removes the file
fclose($temp);
?>

kodun çıktısını göreceğiz:

Testing, testing.

<Komple PHP Dosya Sistemi Referans