En son web geliştirme öğreticiler
 

PHP ftell() Function


<Komple PHP Dosya Sistemi Referans

Tanımı ve Kullanımı

ftell() işlevi, açık bir dosya mevcut pozisyonunu geri gönderir.

mevcut dosya işaretçisi konumunu veya başarısızlık durumunda döner.

Sözdizimi

ftell(file)

Parametre Açıklama
file Gereklidir. kontrol etmek açık dosyayı belirtir

Örnek

<?php
$file = fopen("test.txt","r");

// print current position
echo ftell($file);

// change current position
fseek($file,"15");

// print current position again
echo "<br />" . ftell($file);

fclose($file);
?>

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

0
15

<Komple PHP Dosya Sistemi Referans