PHP date_get_last_errors() 日期 时间 函数 详解
php基础 2022-06-06 17:05:58小码哥的IT人生shichen
PHP date_get_last_errors() 函数
实例
返回解析日期字符串时的警告和错误:
<?php
date_create("aecubdjpoi%&&/");
print_r(date_get_last_errors());
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
date_create("aecubdjpoi%&&/");
print_r(date_get_last_errors());
?>
</body>
</html>
定义和用法
date_get_last_errors() 函数返回解析日期字符串时找到的警告/错误。
语法
date_get_last_errors();
技术细节
返回值: | 返回一个包含有关错误/警告信息的数组。 |
---|---|
PHP 版本: | 5.3+ |