Stan's blog

Laravel

php ping alternative

20 сентября 2025
function isHostReachable($host, $port = 80, $timeout = 5)
{
    $fp = @fsockopen($host, $port, $errno, $errstr, $timeout);
    if ($fp) {
        fclose($fp);
        return true;
    }
    return false;
}