文件读写的步骤:
??? 1.打开文件,fopen
??? 2.读写文件,fgets,fwrite
??? 3.关闭文件,fclose
$fp = fopen("路径","r") window: E:/userpass.csv
??? r: 只读,文件的开头开始
??? r+: 读/写 文件的开头开始
??? w: 只写。打开并清空文件的内容;如果文件不存在,则创建新文件。
??? W+: 读/写。 打开文件清空文件的内容;如果文件不存在,则创建新文件。
??? a:追加。 打开并向文件末尾进行写操作,如果文件不存在,则创建新文件。
??? a+:读/追加。通过向文件末尾写内容,来保持文件内容
??? x: 只写。创建新文件。如果文件已存在,则返回false和一个错误。
??? x: 读/写。创建新文件。如果文件已存在,则返回false和一个错误。
??? feof()判断文件是否到末尾了
??? 使用file_get_contents直接获取文件内容
???? <?php
//最基本的按行循环读取整份文件
/*$fp = fopen("D:/1.txt","r");
while(!feof($fp)){
??? $line = fgets($fp);
??? $line = str_replace("\n","<br/>",$line);
??? echo $line;
}
fclose($fp);
*/
// 往文件中写入内容
/*$fp = fopen("D:/1.txt","a");
fwrite($fp,"\ntest,test123,login-fali");
fclose($fp);
*/
//使用file_get_contents直接获取文件内容
//header("content-type:text/html,charset='gbk'");
/*$content = file_get_contents("D:/1.txt");
$content = str_replace("\n","<br/>",$content);
echo $content;
*/
//使用file_get_contents发送get请求
/*$content = file_get_contents("https://limestart.cn/");
echo $content; 是否可以用于下载一个文件、一张图片、或者进行爬虫*/
//使用file_put_contents()一次性写入文件
//utf-8 中文3个字节 GBK中文2个字节
//$content = file_put_contents("D:/1.txt","\n你们好,欢饮来到这个四届",FILE_APPEND);
//读取一个文件,并且用,分隔符隔开,并且解析为二维数组
/*$content = file_get_contents("D:/2.csv");
$rows = explode("\n",$content);
$list = array();
for($i=1;$i<count($rows);$i++){
??? $temp = explode(".",$rows[$i]);
??? array_push($list,$temp);
}
print_r($list);*/
//使用php模拟tail -f实时检测文件
set_time_limit(0);//取消超时时间
$pos = 0;
while(true) {
??? $fp = fopen("1.txt","r");
??? fseek($fp,$pos);
??? while ($line = fgets($fp)) {
??????? $line = iconv("GBK","UTF-8",$line);
??????? echo $line."<br/>";
??? }
??? $pos = ftell($fp);
??? fclose($fp);
??? ob_flush();
??? flush();
??? sleep(2);
}