文件的小操作

来源:互联网 发布:国家电网软件注册流程 编辑:程序博客网 时间:2024/04/28 15:49
if(!file_exists('./num.txt')){
touch('./num.txt');
}
$count = file_get_contents('./num.txt');
$count = $count?$count:0;
//push
echo 'you are '.$count.'bit people';
$count++;
$re=fopen('./num.txt','w');
fwrite($re, $count);

fclose($re);

文件的小操作,呵呵

原创粉丝点击