📜  PHP | date_get_last_errors()函数

📅  最后修改于: 2022-05-13 01:56:28.802000             🧑  作者: Mango

PHP | date_get_last_errors()函数

date_get_last_errors()函数是PHP中的一个内置函数,用于返回警告和错误。此函数解析日期/时间字符串并返回警告和错误数组。

句法:

  • 程序风格:
    array date_get_last_errors( void )
  • 面向对象风格:
    array DateTime::getLastErrors( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个数组,其中包含有关警告和错误的信息。

下面的程序说明了PHP中的 date_get_last_errors()函数:

方案一:


输出:
Array
(
    [warning_count] => 0
    [warnings] => Array
        (
        )

    [error_count] => 0
    [errors] => Array
        (
        )

)

方案二:


输出:
Array
(
    [warning_count] => 0
    [warnings] => Array
        (
        )

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

)

相关文章:

  • PHP | gmstrftime()函数
  • PHP | gettimeofday()函数
  • PHP | strptime()函数

参考: http: PHP。 PHP