Hi
dies funktioniert:
das aber nicht, warum?
sobald ich also eine datei in einem ordner abfragen will funktioniert das ganze nicht bzw. die datumsausgabe ist 1.1.1970 oder so.
dies funktioniert:
PHP-Code:
<?php
$path = "/home/www/xxxx.de/htdocs/index.php";
$update = filemtime(basename($path));
setlocale(LC_TIME,"de_DE","de","ge");
echo "<p>:: Letztes Update: <strong>", strftime("( %A %d.%m.%Y )", $update),"</strong> ::<br />
:: text text text::</p>";
?>
PHP-Code:
<?php
$path = "/home/www/xxxx.de/htdocs/ordner/bla.php";
$update = filemtime(basename($path));
setlocale(LC_TIME,"de_DE","de","ge");
echo "<p>:: Letztes Update: <strong>", strftime("( %A %d.%m.%Y )", $update),"</strong> ::<br />
:: text text text::</p>";
?>
Kommentar