Description :
Permet de savoir si un serveur est online ou offline.
Portion de code
1 2 3 4 5 6 7 8 9 10 11 12 13
|
<? function is_online($server,$port) { /* Coded By Charlichaplin == > charlichaplin@gmail.com */ $fp = @fsockopen($server,$port); if(!$fp) { return false; } else { return true; } } ?> |
|