(PHP 5 >= 5.3.0, PHP 7)
DateTime::getLastErrors -- date_get_last_errors — ��ȡ����ʹ�����Ϣ
���������
���̻����
�����ڽ�������ʱ���ַ����Ĺ����з����ľ���ʹ�����Ϣ��
�˺���û�в�����
����һ�����飬���а����ڽ�������ʱ���ַ����Ĺ����з����ľ���ʹ�����Ϣ��
Example #1 DateTime::getLastErrors() ����
���������
<?php
try {
$date = new DateTime('asdfasdf');
} catch (Exception $e) {
// ��������ʾ��Ŀ��...
print_r(DateTime::getLastErrors());
// ʵ�ʵĴ�������Ӧ������ʹ�÷��ض���
// 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 ) )
���������е����� 6 �� 0 ��ʾ�ڽ��������У����ṩ������ʱ���ַ���������ȷ�������ַ�λ�á�