Gerd: Datum formatieren

Hallo,
ich habe einen Timestamp mit dem Wert '1077217860' erzeugt.
Wie bekomme ich daraus ein Datum im Format Tag.Monat.Jahr (dd.mm.yyyy)?

Ich habe schon folgendes versucht; als Ergebnis aber immer nur das heutige Datum erhalten:

echo strftime("%d.%m.%Y", $time);

Wie kann ich das errechnete Datum formatiert ausgeben?

Danke im Voraus
Gerd

  1. Hallo,

    http://www.rpgcommunity.de/clanwissen/p_datum.php

    per date()

    MFG
    Andavos

    --
    http://www.rpgcommunity.de/clanwissen/index.php Webdesign, PHP, Clan-Aufbau und mehr
  2. Hallo,

    echo strftime("%d.%m.%Y", $time);

    Ist schon richtig, http://de.php.net/strftime
    Welchen Wert hat denn $time?

    Gruss, Thoralf

    --
    Sic Luceat Lux!
    1. Welchen Wert hat denn $time?

      Hi,
      danke für deine Antwort.

      $time hat den wert 1077217860 der Timestamp.

      Gerd

      1. Hallo,

        Ich hab eben einfach mal getestet:
        print strftime('%d.%m.%Y', 1077217860); // ==> 19.02.2004

        probiert eventuell mal:
        print strftime('%d.%m.%Y', $time) . " ($time)";

        Gruss, Thoralf

        --
        Sic Luceat Lux!
        1. print strftime('%d.%m.%Y', 1077217860); // ==> 19.02.2004

          Hi,

          Das hab ich auch gerade mal mit 2 verschiedenen timestamps probiert.
          Funktioniert auch richtig. Es liegt dann nicht an der Formatierung sondern eher am restlichen code.

          Ich finde aber eigentlcih keinen Fehler. Hier mal der code:

          ===========================================================
          $Y = 2003;
          $m = 10;
          $d = 22;

          $timestamp = strtotime($Y-$m-$d);
          $time = strtotime("+2 week", $timestamp);
          print strftime('%d.%m.%Y', $time);

          Danke
          Gerd

          1. Hallo,

            $timestamp = strtotime($Y-$m-$d);

            $timestamp = strtotime(2003-10-22);

            Fällt Dir was auf? ;)

            Generelle Empfehlung: error_reporting( E_ALL );

            Gruss, Thoralf

            --
            Sic Luceat Lux!