fclose() don’t close the socket 403 line SOLUTION
-
Error with 403 line
fclose($this->socket);
$this->socket = NULL;
return false;change this to:
if($this->socket)
{
fclose($this->socket);
$this->socket = NULL;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘fclose() don’t close the socket 403 line SOLUTION’ is closed to new replies.