[Funktion] Problem mit Datum!

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

  • [Funktion] Problem mit Datum!

    Hallo Community

    habe ein kleines Problem der Umwandlung einer Variable ins Datumformat.
    Habe mir schon diverse Manuals angeschaut aber leider kein erfolg gehabt.

    Mein Problem:
    Ich übergebe per URL-Parameter ein Datum, im Format:

    <url>&Datum=2007-01-23

    Diese Variable, $_GET[Datum], möchte ich als Date difinieren, damit ich mit date(m) 01 erhalte. Ich habe folgendes versucht

    date(m, $_GET[Datum]) als Timestamp, kein erfolg
    mit mktime, auch kein erfolg
    mit strtotime, auch erfolglos

    wie stell ich das also an?!

    Für Hilfe bin ich sehr dankbar!


  • #2
    mit strtotime, auch erfolglos
    dann hast du was falsch gemacht ! strtotime() erwartet ein Datum in genau diesem Format um daraus einen Timestamp zu kreieren.
    PHP-Code:
    echo date('m',strtotime($_GET['Datum'])); 
    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


    • #3
      Original geschrieben von jahlives
      dann hast du was falsch gemacht ! strtotime() erwartet ein Datum in genau diesem Format um daraus einen Timestamp zu kreieren.
      PHP-Code:
      echo date('m',strtotime($_GET['Datum'])); 
      Gruss

      tobi
      danke

      Kommentar

      Lädt...
      X