(PHP 4, PHP 5, PHP 7, PHP 8)
fclose — Closes an open file pointer
stream
The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen().
Example #1 A simple fclose() example
<?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?>