fclose
fclose
(PHP 4, PHP 5, PHP 7)
fclose - 关闭打开的文件指针
描述
bool fclose ( resource $handle )
指向的文件handle
已关闭。
参数
handle
文件指针必须是有效的,并且必须指向由fopen()或fsockopen()成功打开的文件。
返回值
成功则TRUE
或失败时返回FALSE
。
例子
示例#1一个简单的fclose()示例
<?php
$handle = fopen('somefile.txt', 'r'
fclose($handle
?>
扩展内容
- fopen() - 打开文件或URL
- fsockopen() - 打开Internet或Unix域套接字连接
← diskfreespace
feof →