Selaa lähdekoodia

is_resource check

walkor 10 vuotta sitten
vanhempi
commit
2ae36a1e64
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      Connection/TcpConnection.php

+ 1 - 1
Connection/TcpConnection.php

@@ -254,7 +254,7 @@ class TcpConnection extends ConnectionInterface
             else
             {
                 // 如果连接断开
-                if(feof($this->_socket))
+                if(feof($this->_socket) || !is_resource($this->_socket))
                 {
                     // status统计发送失败次数
                     self::$statistics['send_fail']++;