PHP date_get_last_errors() 函数

PHP date_get_last_errors() 函数

返回 PHP Date/Time 参考手册


实例

返回解析日期字符串时的警告和错误:

<?php
date_create("gyuiyiuyui%&&/");
print_r(date_get_last_errors());
?>

执行结果

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

    [error_count] => 5
    [errors] => Array
        (
            [0] => The timezone could not be found in the database
            [10] => Unexpected character
            [11] => Unexpected character
            [12] => Unexpected character
            [13] => Unexpected character
        )

)

定义和用法

date_get_last_errors() 函数返回解析日期字符串时找到的警告/错误。

语法

date_get_last_errors();

技术细节

  • 返回值: 返回一个包含有关错误/警告信息的数组。
  • PHP 版本: 5.3+

返回 PHP Date/Time 参考手册

查看笔记

扫码一下
查看教程更方便