Blogger Information
Blog 250
fans 3
comment 0
visits 321591
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
文件函数:fgets()
梁凯达的博客
Original
777 people have browsed it

实例

<?php
 //fgets()
 //函数用于每次读取一行内容  下一次在读取下面的内容
 //参数:fgets([路径],[时间])
 file_put_contents('./wangru','a我真的就写进去了');
 $handle = fopen('./wangru','r');
 echo fgets($handle);
 echo '<hr />';
 //fgetc()
 //函数用于每次读取一个字符
 //参数:fgetc()
 //此处文件指针已到了最后的位置,如果需要获取一个字符,则需要重置指针
 rewind($handle);
 echo fgetc($handle);

 //feof()
 //函数用于获取到文件是否到最后的位置
 //如果文件返回的是最后的位置,则返回ture,否则则返回false

 //小案例:计数循环,直接到一个字节字节输出,输出到结尾
 echo '<hr />';
 rewind($handle);
 while(!feof($handle)){
  echo fgetc($handle);
 }

 //readfile()
 //函数用于读取文件中的内容并且在浏览器中打开
 //readfile('./jinming');
 //注意下,此处不需要打开文件
 echo '<hr />';
 rewind($handle);
 readfile('./wangru');

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post