PHP-Logo
Druckansicht von http://www.php-homepage.de/manual/function.date-parse.php

PHP-Logo
[ Main Menue ]
Homepage
Downloads
Artikel
Scripts
Forum
PHP-Manual
Links
News
Freelancer
Bücher
RuDolF
Suche
Misc
Über diese Seite
Kontakt
Wunschzettel
MyGuestbook
*
[ Suche ]
*
[ Manual ]
*

Follow on Twitter - @phphomepage

RSS Feed blogoscoop
 date_parse_from_format  Letztes Update:
18.05.2012
date_sub 

date_parse

(PHP 5 >= 5.2.0)

date_parseReturns associative array with detailed info about given date

Beschreibung

array date_parse ( string $date )

Parameter-Liste

date

Date in format accepted by strtotime().

Rückgabewerte

Returns array with information about the parsed date on successIm Fehlerfall wird FALSE zurückgegeben..

Fehler/Exceptions

In case the date format has an error, the element 'errors' will contains the error messages.

Beispiele

Beispiel #1 A date_parse() example

<?php
print_r
(date_parse("2006-12-12 10:00:00.5"));
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Array
(
    [year] => 2006
    [month] => 12
    [day] => 12
    [hour] => 10
    [minute] => 0
    [second] => 0
    [fraction] => 0.5
    [warning_count] => 0
    [warnings] => Array()
    [error_count] => 0
    [errors] => Array()
    [is_localtime] => 
)

Siehe auch

  • checkdate() - Prüft ein Gregorianisches Datum auf Gültigkeit
  • getdate() - Gibt Datums- und Zeitinformationen zurück

© Copyright 1999 - 2011 by Mark Kronsbein | Impressum | NutzungsbedingungenWeiterempfehlen | Seitenanfang
0.0041