您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1313 复制当前网址

fclose

PHP fclose() 函数

定义和用法

fclose() 函数关闭一个打开文件。


语法

fclose(file)

参数描述
file必需。规定要关闭的文件。


说明

file 参数是一个文件指针。fclose() 函数关闭该指针指向的文件。

如果成功则返回 true,否则返回 false。

文件指针必须有效,并且是通过 fopen() 或 fsockopen() 成功打开的。


例子

<?php
$file = fopen("test.txt","r");//执行的一些代码...fclose($file);
?>


文章来源:http://liqingbo.com/blog-581.html

上一篇:feof

下一篇:diskfreespace

评论