Php Text Dosya İşlemleri

Php'de text dosyaları işlemekte kullanılan fopen, fwrite gibi komutların yerine, daha basit olarak aşağıdaki kodlar kullanılabilir:

  $file = 'people.txt';
  // Open the file to get existing content
  $current = file_get_contents($file);
  // Append a new person to the file
  $current= $current."John Smith";
  // Write the contents back to the file
  file_put_contents($file, $current);

 

25.08.2019 08:44:01

Yorumlar

Bu yazıya henüz yorum yapılmamış.

Yazı hakkında yorum yapmak için, buraya tıklayın.

Kategoriler :

Arşiv :

Etiketler :

Bağlantılar :