PHP date_get_last_errors() Function

❮ PHP Date/Time Reference

Example

Return the warnings and errors while parsing a date string:

<?php
date_create("gyuiyiuyui%&&/");
print_r(date_get_last_errors());
?>
Try it Yourself »

Definition and Usage

The date_get_last_errors() function returns the warnings/errors found while parsing a date string.


Syntax

date_get_last_errors()

Technical Details

Return Value: Returns an array that contains information about the errors/warnings
PHP Version: 5.3+

❮ PHP Date/Time Reference
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.