The recode_file function will put the file position indicator at the end of each files, so if you want to re-use the handles use fseek beforehand.
(PHP 4, PHP 5, PHP 7 < 7.4.0)
recode_file — Dosyadan dosyaya karakter kodlaması dönüşümü yapar
Belirtilen isteğe bağlı olarak dosya tanıtıcısı girdi
ile belirtilen dosyayı dosya tanıtıcısı çıktı
ile
belirtilen dosyaya yeniden kodlar.
istek
Yeniden kodlama isteği türü.
girdi
Girdi olarak bir yerel dosya tanıtıcısı.
çıktı
Çıktı olarak bir yerel dosya tanıtıcısı.
Örnek 1 - Basit bir recode_file() örneği
<?php
$input = fopen('girdi.txt', 'r');
$output = fopen('çıktı.txt', 'w');
recode_file("ISO-8859-9..UTF-8", $input, $output);
?>
Bu işlev henüz uzak dosyaların (URL) dosya tanıtıcıları ile çalışmamaktadır. Her iki dosya tanıtıcı da yerel olmak zorundadır.
The recode_file function will put the file position indicator at the end of each files, so if you want to re-use the handles use fseek beforehand.