php如何处理日期格式
php 提供多重处理日期格式的方法:使用 date() 函数将 unix 时间戳转换为特定格式的字符串。使用 strtotime() 函数将人类可读的日期字符串转换为 unix 时间戳。使用 date() 函数的字母代码自定义日期格式,如显示年份、月份、日期、小时、分钟和秒。
PHP 处理日期格式
PHP 提供了多种方法来处理日期格式。最常用的方法是使用 date() 函数和 strtotime() 函数。
date() 函数
date() 函数将 Unix 时间戳转换为指定格式的字符串。其语法如下:
date(format, timestamp)
其中:
示例:
$timestamp = time(); $date_string = date("Y-m-d H:i:s", $timestamp); echo $date_string; // 输出:2023-03-08 15:30:00
strtotime() 函数
strtotime() 函数将人类可读的日期字符串转换为 Unix 时间戳。其语法如下:
strtotime(string)
其中:
示例:
$date_string = "2023-03-08 15:30:00"; $timestamp = strtotime($date_string); echo $timestamp; // 输出:1678293000
自定义日期格式
使用 date() 函数,可以通过使用字母代码来指定自定义日期格式:
示例:
$timestamp = time(); $date_string = date("d/m/Y H:i", $timestamp); echo $date_string; // 输出:08/03/2023 15:30
以上就是php如何处理日期格式的详细内容,更多请关注php中文网其它相关文章!