我使用fsockopen()连接到循环中的多个服务器.
但是有些服务器无效,我收到如下所示的PHP警告:
Warning: fsockopen() [function.fsockopen]: PHP_network_getaddresses: getaddrinfo Failed: The requested name is valid,but no data of the requested type was found
有没有办法防止这些警告.
就像在尝试fsockopen之前检查服务器是否良好一样?
或者还有其他更好的解决方案吗?
使用
error control operator并检查fsockopen()的结果以确认您有一个有效的连接.
原文链接:https://www.f2er.com/php/135631.html$rc = @fsockopen(...); if (is_resource($rc)) { // do work }