码迷,mamicode.com
首页 > Web开发 > 详细

php读取文件的各种ss

时间:2014-09-17 13:27:32      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:http   os   使用   ar   文件   art   sp   on   c   

博客根据http://www.ibm.com/developerworks/cn/opensource/os-php-readfiles个人总结

获取文件全部内容

以下归类是按平时我们通常的使用方法总结

一次性获取

file_get_contents($path),将整个文件内容写入到一个字符串中

分段获取

$headle = fopen();

fgets($headle,$length);

fread($headle,$length);

feof($headle);//判断文件结尾

截取文件部分内容

file_get_contents($path,$include_path,null,$start,$max_length);
fseek移动指针方法
$headle = fopen();
fseek($headle,$start);//将指针移动到$start位置
fread($headle,$length);

 

php读取文件的各种ss

标签:http   os   使用   ar   文件   art   sp   on   c   

原文地址:http://www.cnblogs.com/xiashuo-he/p/3976807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!