Ho questo script
Codice PHP:
<?PHP
$ts_ip = "91.121.14.143"; // Change to your server's IP external or domain name
$ts_port = "9475"; // Make sure this port is open on the router or firewall
$output = @fsockopen("$ts_ip", $ts_port, $errno, $errstr, 2);
socket_set_timeout($output, 000002);
if (!$output) {
echo "<FONT COLOR=#DD0000><B>OFFLINE</B></FONT>";
} else {
echo "<FONT COLOR=#00DD00><B>ONLINE</B></FONT>";
}
@fclose($output);
?>
Che però è usato per lo status di un server di TeamSpeak.Ora ho alcune domande:
1)Cambiando IP e porta posso usarlo per un server qualsiasi di qualsiasi applicazione?
2)Se sì,come faccio a sapere l'indirizzo IP di un server IRC?Per esempio,da irc://irc.quakenet.com/assaultcube,come faccio a risalire al suo IP?
3)E nel caso,pare che nello script stesso c'è scritto che posso scrivere direttamente l'indirizzo al posto dell'IP,quindi posso scriverlo?
Grazie in anticipo!