از کد زیر استفاده کنید (ثانیه رو میتونی مشخص کنی):
$host = 'pgwsf.bpm.bankmellat.ir';
$port = 443;
$timeout = 5; // 5 seconds
$connection = @fsockopen($host, $port, $errno, $errstr, $timeout);
if(is_resource($connection)) {
return true;
}
return false;