Admin Kurucu / Root
Mesaj Sayısı : 552 Kayıt tarihi : 09/07/10 Yaş : 42 Nerden : Bursa
| Konu: Php De Bir dosyaya yazma okuma C.tesi Eyl. 24, 2011 7:32 am | |
| Php De Bir dosyaya yazma okuma <?php //okuma: //yontem 1:
$dosya = "/srv/www/htdocs/deneme/deneme.txt";
//tüm dosya icerigini bir string icine yazar if(file_exists($dosya)) //kontrol eder dosya varmi diye $string = file_get_contents($dosya); else echo "dosya bulunamadi";
//yontem 2: if(file_exists($dosya)) { //kontrol eder dosya varmi diye $handle= fopen ($dosya, "r"); //dosyayi acar okumak icin $string = fread ($handle, filesize ($dosya)); //dosyanin icerigini okur ve $string icine yazar fclose ($handle); //dosyayi kapar }else { echo "dosya bulunamadi"; }
//yazma: //yontem 1: $icerik="BUnu bu dosyaya yaz"; if(is_writable($dosya)) file_put_contents($dosya,$icerik); else echo "dosya bulunamadi";
//yontem2: if (is_writable($dosya)) { $handle = fopen($dosya, "a")); fwrite($handle, $icerik); fclose($handle); }else { echo "dosya bulunamadi"; }
?> | |
|