update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the warnings and errors

DateTime::getLastErrors

date_get_last_errors

(PHP 5 >= 5.3.0, PHP 7)

DateTime::getLastErrors -- date_get_last_errorsReturns the warnings and errors

설명

객체 기반 형식

public static array DateTime::getLastErrors ( void )

절차식 형식

array date_get_last_errors ( void )

Returns an array of warnings and errors found while parsing a date/time string.

인수

이 함수는 인수가 없습니다.

반환값

Returns array containing info about warnings and errors.

예제

Example #1 DateTime::getLastErrors() example

객체 기반 형식

<?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();
}
?>

절차식 형식

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

위 예제들의 출력:

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
       )

)

The indexes 6, and 0 in the example output refer to the character index in the string where the error occurred.