dongliqin6939 2013-05-08 11:38
浏览 32
已采纳

fsockopen()总是返回true

Hi I am trying to incorporate a function in my project that will ping my app servers and see if they are running or not. Problem is, everytime I try to use this function it always returns that they are alive, even though I am in my local environment, and there are no servers at those IP addresses. So whats going on?

Here is my function:

function ping($host, $port, $timeout) { 
    if($fp = fsockopen($host,$port,$errCode,$errStr,$timeout)){   
       return 'Alive';
    } else {
       return 'Not alive'; 
    } 
    fclose($fp);
}

Here is how I am calling the function:

    foreach ($appservers as $key => $value) {
        echo ping($value['privateip'] , 80, 1).'<br/>';
    }

Here is my array of server variables:

$appservers = array(
'app1' => array(
    'publicdns' => 'app1.xxxx.com',
    'privateip' => '1.1.1.101',
    'alive' => NULL,
    'active_users' => NULL
),

'app2' => array(
    'publicdns' => 'app2.xxxx.com',
    'privateip' => '1.1.1.102',
    'alive' => NULL,
    'active_users' => NULL
),

'app3' => array(
    'publicdns' => 'app3.xxxx.com',
    'privateip' => '1.1.1.103',
    'alive' => NULL,
    'active_users' => NULL
),

'app4' => array(
    'publicdns' => 'app4.xxxx.com',
    'privateip' => '1.1.1.104',
    'alive' => NULL,
    'active_users' => NULL
)

);

  • 写回答

1条回答 默认 最新

  • douwen0647 2013-05-08 11:49
    关注

    Have see this issue before , You are using a DNS service that resolves non-existent domains to a server that gives you a "friendly" error page, which it returns with a 200 response code.

    See : get_headers Inconsistency for more details of this issue.

    You can resolve it with DavidRandom solution

    var_dump(ping("stackoverflow.com", 30, 1)); // port 30 return false
    var_dump(ping("stackoverflow.com", 80, 1)); // port 80; returns 0.49000000953674
    

    Your Function Modified

    function ping($host, $port, $timeout) {
        $a = gethostbyname('idontexist.tld');
        $b = gethostbyname($host);
    
        if ($a == $b)
            return false;
    
        $time = microtime(true);
        $fp = @fsockopen($host, $port, $errCode, $errStr, $timeout);
        $time = microtime(true) - $time;
        if ($fp) {
            fclose($fp);
            return $time;
        } else {
            return false;
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度