PHP 读取文本内容的简单示例
/*// 512笔记网 Www.512Pic.com应用:读取文件内容;*/function read_file_content($FileName){//open file$fp=fopen($FileName,"r");$data="";while(!feof($fp)){//read the file$data.=fread($fp,4096);}//close the filefclose($fp);//delete the file//unlink($FileName);//return the content from the fileecho $data;}read_file_content("a.html")?>
fread与fgets的区别
fread :以字节位计算长度,按照指定的长度和次数读取数据,遇到结尾或完成指定长度读取后停止.
fgets :整行读取,遇到回车换行或结尾停止.在文本方式时使用.
本文来自:http://www.512pic.com/173/13907-0.html
注:关于PHP 读取文本内容的简单示例的内容就先介绍到这里,更多相关文章的可以留意512笔记的其他信息。
关键词:
您可能感兴趣的文章
赞 (0)