Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

DateTime::getLastErrors



 

    Befehl:
public static array DateTime::getLastErrors ( void )


    Beschreibung:
Gibt ein Array von Warnungen und Fehler beim Parsen gefunden ein Datum / Zeit-String.


    Aktiv in Version:
(PHP 5 >= 5.3.0, PHP 7)

DateTime::getLastErrors() oder date_get_last_errors


Eingabe:
Objektorientierter Stil
<?php
try {
    $date = new DateTime('asdfasdf');
} catch (Exception $e) {
    // For demonstration purposes only...
    print_r(DateTime::getLastErrors());

    // The real object oriented way to do this is
    // echo $e->getMessage();
}
?>

Prozeduraler Stil
<?php
$date = date_create('asdfasdf');
print_r(date_get_last_errors());
?>


Ausgabe:
Array
(
   [warning_count] => 1
   [warnings] => Array
       (
           [6] => Double timezone specification
       )

   [error_count] => 1
   [errors] => Array
       (
           [0] => The timezone could not be found in the database
       )

)