<?php
/**
用文件操作函数,批量处理客户名单
*/
/*
第一种
各操作系统下,换行符不一致
windows \r\n
*nix \n
mac \r
*/
$file = './custom.txt';
$source = file_get_contents($file);
print_r(explode('\r',$source));
/*
第二种
一次读一行
rb中的b标识以二进制来处理
*/
$file = './custom.txt';
$source = fopen($file,'rb');
while(!feof($source)){
echo fgets($source),'<br>';
}
/*
第三种
比较暴力的方式读取
file函数直接读取文件内容,并按行拆成数组,并返回该数组
和file_get_contents的共同点:
一次性读入,大文件慎用!
*/
$file = './custom.txt';
$arr = file($file);
print_r($arr);
/*
文件是否存在
文件上次修改时间
*/
$file = './custom.txt';
if(file_exists($file)){
echo '该文件存在','<br>';
echo '上次修改时间'.date('Y-m-d H:i:s',filemtime($file));
}