-
Notifications
You must be signed in to change notification settings - Fork 32
Home
dengdaidai edited this page Aug 12, 2015
·
4 revisions
Welcome to the lookphp.github.io wiki!
我的维基?
大有作为!
`if(file_exists('count.txt')){ //这里判断是否存在'count.txt'文件 $str=file_get_contents('count.txt'); $str+=1; echo '你是第'.$str.'位访客';
file_put_contents('count.txt',$str); //写入文件中
}else{
$fp=fopen('count.txt','w'); //不存在的话我们重新创建..
fwrite($fp,1); //在里面写入1
echo '你是第1位访客';
fclose($fp); //记得关闭哦
}`
email:lookphp@163.com