|
|
|
ถามท่านเทพทั้งหลายหน่อยว่า จะเขียน php แสดงสถานะ server ว่า online หรือ offline |
|
|
|
|
|
|
|
Code (PHP)
/*วิธีใช้:
$status = GetServerStatus('http://domain.com',80)
or
$status = GetServerStatus('IPAddress',80)
*/
<?php
function GetServerStatus($site, $port)
{
$status = array("OFFLINE", "ONLINE");
$fp = @fsockopen($site, $port, $errno, $errstr, 2);
if (!$fp) {
return $status[0];
} else
{ return $status[1];}
}
?>
Go to : ขอ code ไว้เช็ค ว่าเซิฟเวอร์ออนไลท์หรือออฟไลท์ Offline/Online ด้วยครับ
|
|
|
|
|
Date :
2011-10-27 20:29:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณมากเลย
|
|
|
|
|
Date :
2011-10-28 08:19:06 |
By :
suaingam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|