(PHP 4, PHP 5)
fclose — 关闭一个已打开的文件指针
$handle
)
将 handle
指向的文件关闭。
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
文件指针必须有效,并且是通过 fopen() 或 fsockopen() 成功打开的。
Example #1 一个简单 fclose() 例子
<?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?>
handle
The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen().
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Example #2 A simple fclose() example
<?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?>