Hallo Community!
wie kann ich es erreichen, dass PHP automatisch den Socket abbricht, wenn es auf über 1 Sekunde hinausläuft?
Hier mein Codebeispiel
Gruss & Danke!
wie kann ich es erreichen, dass PHP automatisch den Socket abbricht, wenn es auf über 1 Sekunde hinausläuft?
Hier mein Codebeispiel
PHP-Code:
/////////////////////////////////////////////////////////////////////
$s = explode(" ",microtime());
$Starttime = $s[1]+$s[0];
// AUSWERTUNG HIER ANFANG PING & PORT KONTROLLE ==> ANFANG <==
$socket = @fsockopen($IP, $PO, &$errno, &$errstr);
// AUSWERTUNG HIER ENDE PING & PORT KONTROLLE ==> ENDE <==
$t = explode( " ", microtime() );
$Endtime= $t[1] + $t[0];
$finalzeit = number_format( $Endtime-$Starttime, 3);
/////////////////////////////////////////////////////////////////////
Kommentar