<?php
//ftell()
//ftell()函数用于返回当前的指针位置
$handle = fopen('./wangru','r');
echo ftell($handle);
echo '<hr />';
echo fread($handle,filesize('./wangru'));
echo '<hr />';
echo ftell($handle);
echo '<hr />';
//重置指针的位置
rewind($handle);
echo ftell($handle);