(PHP 4, PHP 5, PHP 7, PHP 8)
fclose — 關(guān)閉一個(gè)已打開的文件指針
$handle
): bool
將 handle
指向的文件關(guān)閉。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 一個(gè)簡單 fclose() 例子
<?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?>