我使用fsockopen,fgets和fputs与其他机器实现通信协议。 NetBeans在fsockopen, fputs, fgets
等之前向所有'@'发出警告。解决方案有效,但在断开远程设备后没有'@'则有警告(而不是错误)。
我不想使用error_reporting,因为它不是更犹太的解决方案。另外还有更多的代码,更长的执行时间......
有没有更好的解决方案?
顺便说一句。如果目标计算机将断开连接,则会出现警告。设备过载是可能的。
$answer=@fgets($socket, $negotiatedMaxLength);
顺便说一句。该解决方案应该在没有ini_set
的情况下工作 - 在服务器上阻止而没有error_reporting()
。
答案 0 :(得分:1)
使用@
set_error_handler
这是明显的方法。
https://www.w3schools.com/php/func_error_set_error_handler.asp
这使您可以将错误传递到ErrorException
类,然后您可以使用异常而不是错误。这允许您使用try/catch
块来处理错误。
set_error_handler(function($severity, $message, $file = 'Unknown', $line = 'Unknown'){
//typically I set a constant for PHP_ERRORS for the exception code.
if (error_reporting() != -1 && !(error_reporting() & $severity)) {
//we'll let this error go to the next error handler
return; //return null
}else{
//convert the error into an exception
throw new ErrorExcption($message, 0, $severity, $file, $line );
//we don't have to return anything because the exception throwing kicks us out of the error handler.
}
});
try{
$answer=fgets($socket, $negotiatedMaxLength);
}catch(ErrorException $e ){
}
请注意,&
单个&符号用于检查严重性级别-vs-您执行的错误报告级别bitwise And
$file
和$line
也是可选的,因此我们为它们设置了默认值。