Hallo
DP
Ich möchte überprüfen ob eine Datei auf einen fernen Server existiert.
Ich habe schonmal gegooglet.
Und
funktioniert schonmal
Hier der Link:
http://xzise.xz.ohost.de/test2.html
Und hier der Quelltext:
Code:
<
html>
<head>
<title>php test file exists</title>
</head>
<body>
Existiert eine Datei?
<?
$root = "http://xzise.xz.ohost.de/";
$
url = "inhalt.html";
echo "[b]$root$
url[/b]
";
if (file_exists($
url)) {
echo "Ja";
} else {
echo "Nein";
}
echo "
";
$
url="index.html";
echo "[b]$root$
url[/b]
";
if (file_exists($
url)) {
echo "Ja";
} else {
echo "Nein";
}
echo "
";
$
url = "http://www.google.de/index.html";
echo "[b]$
url[/b]
";
$file = fopen($
url, "r");
if(!$file) {
echo "Ja";
} else {
echo "Nein";
}
fclose($file);
?>
</body>
</
html>