n.文件关闭
The fclose() function closes an open file. 函数的作用是:关闭文件。
When a file is closed, either because of a call to fclose or because the program terminates, all the buffers associated with it are automatically flushed. 当文件被关闭,或者因为程序终止而关闭,文件的缓冲区都被刷新。
fread(buf, 1, 1024*50, pFile);fclose(pFile); 知道答案的朋友请告诉我吧!
fr); printf("%s\n",str); fclose(fr); 作者:佚名文章来源:不详点击数:更新时间:2005-3-29
SESSION[user]}\r\n"; @fputs($fp,$msg); @fclose($fp); 上面的代码是我使用的一个类中的错误记录方法。