同時ping多個ip找了最快的ip網的php執行個體

來源:互聯網
上載者:User


為了翻牆方便 ,買了個vpn,轉到osx下面官方沒有提供合適的用戶端,無法選擇最快的線路。於是就自己寫了個指令碼,手動ping出最快的IP.

 代碼如下 複製代碼
$servers = array(
    array('VIP荷蘭線路01','nl01.yyuu.me','81.4.105.195','4122或3108'),
    array('VIP法國線路01','fr01.yyuu.me','176.31.206.242','4122或3108'),
    array('VIP意大利線路01','it01.yyuu.me','37.247.48.226','4122或3108'),
    array('VIP新加坡線路01','sg01.yyuu.me','128.199.69.209','4122或3108')
);


//配合pcntl_signal使用
declare(ticks=1);
//最大的子進程數量
$max = count($servers);
//當前的子進程數量
$child = 0;

//當子進程退出時,會觸發該函數
function sig_handler($sig) {
    switch($sig) {
        case SIGCHLD:
            //do something
    }
}

//註冊子進程退出時調用的函數
pcntl_signal(SIGCHLD, "sig_handler");
foreach($servers as $server){
    $pid = pcntl_fork();
    if($pid){
        //echo 'main thread start',PHP_EOL;
    }else{
        exec('ping -c 1 '.$server[2],$result);
        echo $server[1].' '.$server[2].' '.$result[1],PHP_EOL;
        exit();
    }
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.