Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
|
AW: Standardfehlerseite des Servers via PHP anzeigen
30. Jun 2010, 13:39
ich hab's
Code:
// praktisch das "file" per Hand
// file('http:// localhost/st4566456')
$f = fsockopen(' localhost', 80, $errno, $errstr, 10);
if ($f) {
fwrite($f, "GET /st4566456 HTTP/1.1\n"
. "Host: localhost\n"
. "Connection: Close\n\n");
while (!feof($f)) echo fgets($f);
} else echo "$errstr ($errno)";
$2B or not $2B
|
|
Zitat
|