发布于 2016-11-18 14:38:43 | 75 次阅读 | 评论: 0 | 来源: 网络整理
fclose() 函数关闭打开的文件。
该函数如果成功则返回 TRUE,如果失败则返回 FALSE。
fclose(file)
<?php $file = fopen("test.txt","r"); //some code to be executed fclose($file); ?>