PHP date_get_last_errors() 函數(shù)
PHP date_get_last_errors() 函數(shù)
實(shí)例
返回解析日期字符串時的警告和錯誤:
<?php
date_create("gyuiyiuyui%&&/");
print_r(date_get_last_errors());
?>
date_create("gyuiyiuyui%&&/");
print_r(date_get_last_errors());
?>
運(yùn)行實(shí)例 ?
定義和用法
date_get_last_errors() 函數(shù)返回解析日期字符串時找到的警告/錯誤。
語法
date_get_last_errors();
技術(shù)細(xì)節(jié)
返回值: | 返回一個包含有關(guān)錯誤/警告信息的數(shù)組。 |
---|---|
PHP 版本: | 5.3+ |

相關(guān)文章
- PHP 簡介
- PHP 常量
- PHP For 循環(huán)
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP Secure E-mails
- PHP 異常處理
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP Filter 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 5 MySQLi 函數(shù)