菜鸟也要有理想
中级会员
 
一般会员
UID 65342
精华
0
积分 439
帖子 426
金钱 439 喜悦币
威望 0
人脉 0
阅读权限 30
注册 2005-8-1
状态 离线
|
readover这个是什么函数?
readover这个是什么函数呀?
$rr=readover("chat.dat","rb");
function readover($filename){
$file=@fopen($filename,"r");
@flock($file,LOCK_SH);
$filedetail=@fread($file,filesize($filename));
@fclose($file);
return $filedetail;
}
手册上找不到此函数
|
|