fclose
(PHP 3, PHP 4 )
fclose -- Closes an open file pointer
Description
bool
fclose ( resource handle)
The file pointed to by handle is closed.
成功回傳TRUE失敗回傳FALSE。
The file pointer must be valid, and must point to a file
successfully opened by fopen() or
fsockopen().
範例 1. A simple fclose() example <?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?> |
|