In case you have some trouble to properly disconnect some client streams opened with stream_socket_server / stream_select you should give a try to stream_socket_shutdown.
<?php stream_socket_shutdown($clientStream,STREAM_SHUT_RDWR); ?>
(PHP 4, PHP 5, PHP 7)
fclose — Closes an open file pointer
$handle
)
The file pointed to by handle is closed.
handleThe file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen().
Returns TRUE on success or FALSE on failure.
Example #1 A simple fclose() example
<?php
$handle = fopen('somefile.txt', 'r');
fclose($handle);
?>
In case you have some trouble to properly disconnect some client streams opened with stream_socket_server / stream_select you should give a try to stream_socket_shutdown.
<?php stream_socket_shutdown($clientStream,STREAM_SHUT_RDWR); ?>
It is a GOOD_THING to check the return value from fclose(), as some operating systems only flush file output on close, and can, therefore, return an error from fclose(). You can catch severe data-eating errors by doing this.
I learned this the hard way.
if you want to daysychain a filehandle through some functions and each function is allowed to close th file you might look in a following function first, if the handle is still valid.
Opening a file, there often will be used a code like
if (!$fh = fopen($filename, $mode)) return false;
But if you possably have closed the file and you want to check that, a smililar statement would not work.
DOES NOT WORK: if (!$fh) end_of_chain();
use beter: if (is_resource($fh)) end_of_chain();
In response to kumar mcmillan 'gotcha' note below, we get a different result on a W2K machine:
<?php
$file_pointer = fopen('textfile.dat', 'r');
fclose($file_pointer);
echo '$file_pointer is resource = ' . (is_resource($file_pointer) ? 'true': 'false');
?>
output:
$file_pointer is resource = false
Generally, it's always a good idea to close a file when you're done with it. It's very easy for something to go wrong and corrupt a file that hasn't been closed properly. If you're concerned about efficiency, the overhead is negligible.
It is very important to make sure you clear any incoming packets out of the incoming buffer using fread() or some equivalent. Although you can call fclose() the socket does not actually shut down until the inbound packets have been cleared. This can lead to some confusion.
fclose() also clears any locks on the file, so if another process was being kept waiting for the lock to be cleared, fclose()ing will allow the other process to continue.
[Another "just-in-case" reason to habitually fclose() all files as soon as practical!]
Do not forget, if you are going to read the contents of the file which you have already written via fwrite() or else you have to close the file first.
Note that since PHP 5.3.2 fclose() no longer unlock open file descriptors at shutdown.