I have a custom error handler attached to E_ALL PHP errors.
In an external lib the call $row = @mysql_fetch_assoc($this->result);
triggers PHP Warnings caught by my handler. Why? Shouldn't '@' make PHP ignore this?
My question: Is there any way I can detect (in my error handler) that '@' was used?