Datum addieren

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Datum addieren

    Wie kann ich zum aktuellen Datum eine bestimmte Anzahl Tagen addieren?

    Danke schon mal und ein schönen abend noch!

  • #2
    php.net/time
    INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


    Kommentar


    • #3
      Da viele Leute nicht lesen mögen/wollen/können:
      PHP-Code:
      $aktuell time();
      $anzahl_tage 5;
      $neue_zeit $akutell 60 60 60
      Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

      [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
      Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

      Kommentar


      • #4
        Danke jahlives, nur wenn ich mir jetzt $aktuell und $neue_zeit anzeigen lasse (echo $aktuell...) erhlte ich als Ausgabe

        1113859268
        1080000

        Kommentar


        • #5
          PHP-Code:
          $neue_zeit $akutell 60 60 60;
          [... 
          sollte natürlich so lauten]
          $neue_zeit $aktuell 60 60 60
          Sorry war mein Fehler aber die Var habe ich in der Eile falsch geschrieben. Und da eine nicht definierte Var in einer Berechnung einfach gleich 0 gesetzt wird, erhieltst du das Ergebnis 5 * 60 * 60 * 60 = 1080000.

          Gruss

          tobi
          Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

          [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
          Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

          Kommentar


          • #6
            wenn du bestimmte Zeitrhythmen zu einem bestimmten Datum hinzufügen möchtest kannst du auch die funktion strtotime() nutzen:


            PHP-Code:
            $neuer_zeitstempel=strtotime("+1 month"time()); 
            oder
            PHP-Code:
            $neuer_zeitstempel=strtotime("+1 year",$alter_zeitstempel); 
            Warum PHP .. wenn's auch mit Perl geht

            Kommentar

            Lädt...
            X