fclose
(PHP 4, PHP 5, PHP 7)
fclose — 关闭一个已打开的文件指针
说明
fclose
( resource
$handle
) : bool
将 handle
指向的文件关闭。
返回值
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
范例
Example #1 一个简单 fclose() 例子
<?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?>