PHP 提供了许多日期和时间函数,用于处理和操作日期和时间。
以下是一些常用的 PHP 日期和时间函数:
$date = date("Y-m-d");
$time = date("H:i:s");
$timestamp = time();
$timestamp = strtotime("2022-01-01");
$timestamp = mktime(0, 0, 0, 1, 1, 2022);
$timestamp = strtotime("2022-01-01");
$dateinfo = getdate();
$formatted_date = strftime("%d %B %Y", $timestamp);
$date1 = date_create("2022-01-01");
$date2 = date_create("2022-12-31");
$diff = date_diff($date1, $date2);
echo $diff->days;
以上仅列举了一些常用的日期和时间函数,详细的 PHP 日期和时间函数可以参考 PHP 官方文档。