<完整PHP文件系统参考
定义和用法
该fclose()函数关闭一个打开的文件。
该函数返回TRUE或FALSE的成功失败。
句法
fclose(file)
参数 | 描述 |
---|---|
file | 需要。 指定文件关闭 |
例
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>
<完整PHP文件系统参考
该fclose()函数关闭一个打开的文件。
该函数返回TRUE或FALSE的成功失败。
fclose(file)
参数 | 描述 |
---|---|
file | 需要。 指定文件关闭 |
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>