一 代码
class="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=gb2312" /> <title>使用4个指针函数来输出文件count.txt中的内容</title> </head> <body><?php $filename = "count.txt"; //指定文件路径及文件名 if(is_file($filename)){ //判断文件是否存在 echo "文件总字节数:".filesize($filename)."<br>"; //输出总字节数 $fopen = fopen($filename,'rb'); //打开文件 echo "初始指针位置是:".ftell($fopen)."<br>"; //输出指针位置 fseek($fopen,50); //移动指针 echo "使用fseek()函数后指针位置:".ftell($fopen)."<br>"; //输出移动后的指针位置 echo "输出当前指针后面的内容:".fgets($fopen)."<br>"; //输出从当前指针到行尾的内容 if(feof($fopen)) //判断指针是否指向文件末尾 echo "当前指针指向文件末尾:".ftell($fopen)."<br>"; //如果指向了文件尾,则输出指针位置 rewind($fopen); //使用rewind()函数 echo "使用rewind()函数后指针的位置:".ftell($fopen)."<br>"; //查看使用rewind()函数后指针的位置 echo "输出前33个字节的内容:".fgets($fopen,33); //输出前33个字节的内容 fclose($fopen); //关闭文件 }else{ echo "文件不存在"; } ?> </body> </html>
?
二 运行结果 文件总字节数:122