php ftell() function - how to get the current position in an open file in php

php ftell() function - how to get the current position in an open file in php


ftellFunction.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>php ftell() function - how to get the current position in an open file in php</title>
</head>

<body>
    <h2 style="color:SeaGreen; font-style:italic">
     php ftell() function example:<br /> how to get the current position in an open file
    </h2>
    <hr width="475" align="left" color="Green" />
    <br />

<?php

 // open the file in readonly mode.
 $file=fopen("test.txt","r") or exit("unable to open file!");
 
 echo "<font style=color:red>";
 //output current position
 echo "current position: " . ftell($file) . "<br />";
 
 //move pointer
 fseek($file,10);
 echo "move pointer...<br />";
 
 //output current position
 echo "current position: " . ftell($file);
 
 echo "</font>";
 //close the file.
 fclose($file);

?>
</body>
</html>