My question is similar to this one. However, the error control operator does not work for me.
With the following code:
$this->fp = @fsockopen($this->ip, $this->port, $errno, $errstr, $this->timeout);
I still get an error message:
fsockopen(): unable to connect to xxx.xxx.xxx.xx:xxxxx (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. )
Is it possible that I can have error control operators disabled?