目录

PHP fclose() 函数

❮ PHP 文件系统参考

示例

打开和关闭文件"test.txt":

<?php
$file = fopen("test.txt", "r");
fclose($file);
?>
运行示例 »

定义和用法

fclose() 函数关闭打开的文件指针。

注意:该文件必须已被打开fopen()或 fsockopen()。

语法

fclose( filepointer)

参数值

Parameter Description
filepointer Required. Specifies the file to close


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0+

❮ PHP 文件系统参考