Ping-script
Auteur: Dolfje - 18 september 2005 - 15:34 - Gekeurd door: nemesiskoen - Hits: 3710 - Aantal punten: 2.00 (3 stemmen)
Deze script pingt naar de opgegeven ip of domeinnaam.
Je moet alleen if( 0 /*unix*/ ) veranderen.
Verander 0 naar 1 als je op linux of unix zit,
als je op windows zit, laat je het zo.
Code:
<?
$host = "www.google.com";
$host = "";
if( 0 /*unix*/ )
{
system ("ping -c5 -w5 $host");
system("killall ping");// kill all ping processes in case there are some stalled ones or use echo 'ping' to execute ping without shell
}
else
{
system("ping -n 5 $host");
}
?>
<?
$host = "www.google.com" ;
$host = "" ;
if ( 0 /*unix*/ )
{
system ( "ping -c5 -w5 $host " ) ; system ( "killall ping" ) ; // kill all ping processes in case there are some stalled ones or use echo 'ping' to execute ping without shell }
else
{
}
?>
met een check erbij:
<?
$host = "www.google.com";
$host = "";
if( strpos($url, "http://") !== FALSE AND strpos($url, "http://") == 0 AND strpos(substr($url, 7), "/") === FALSE )
{
$host = substr($url,7);
}
elseif( ereg("^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$", $url) )
{
$host = $url;
}
if( !empty($host) )
{
if( 0 /*unix*/ )
{
system ("ping -c5 -w5 $host");
system("killall ping");
}
else
{
system("ping -n 5 $host");
}
}
?>
<?
$host = "www.google.com" ;
$host = "" ;
{
}
elseif ( ereg ( "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$" , $url ) ) {
$host = $url ;
}
{
if ( 0 /*unix*/ )
{
system ( "ping -c5 -w5 $host " ) ; }
else
{
}
}
?>
Download code (.txt)
Stemmen
Niet ingelogd.