(PHP 3, PHP 4 )
The file pointed to by handle is closed.
Siker esetén TRUE értékkel tér vissza, ellenkező esetben FALSE értéket ad.
The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen().
Példa 1. A simple fclose() example
<?php $handle = fopen('somefile.txt', 'r'); fclose($handle); ?>