PHP Classes

Error in line 255

Recommend this page to a friend!

      Verify e-mail  >  All threads  >  Error in line 255  >  (Un) Subscribe thread alerts  
Subject:Error in line 255
Summary:error
Messages:2
Author:Michael
Date:2016-04-12 17:36:07
 

  1. Error in line 255   Reply   Report abuse  
Picture of Michael Michael - 2016-04-12 17:36:07
change line 255 to:

$this->stream = @stream_socket_client("tcp://" . $host . ":" . $this->port, $errno, $errstr, $timeout);

you forgot to suppress error output from stream socket client...

thanks for this class!

  2. Re: Error in line 255   Reply   Report abuse  
Picture of Konstantin Granin Konstantin Granin - 2016-04-12 22:17:32 - In reply to message 1 from Michael
Add
thanks