PHP では、日付と時刻の関数を使用することが非常に重要です。タイムスタンプの処理、時差の計算、出力時間のフォーマットなど、PHP の日付と時刻の関数は非常に強力で柔軟性があります。ただし、PHP には日付と時刻の関数が多数あるため、特定のタスクを完了するためにどの関数を選択すればよいか混乱する開発者もいるかもしれません。したがって、この記事では、PHP で最も一般的に使用され、最適な日付と時刻の関数をいくつか紹介します。
echo time(); // 输出当前时间的时间戳
strtotime() 関数
echo strtotime("now"); // 输出当前时间的时间戳 echo strtotime("+1 day"); // 输出明天此时的时间戳 echo strtotime("+1 week"); // 输出一周后此时的时间戳 echo strtotime("next Monday"); // 输出下一个星期一此时的时间戳 echo strtotime("2021-12-25 12:00:00"); // 输出指定日期时间的时间戳
date() 関数
echo date("Y-m-d"); // 输出当前日期,格式为“年-月-日” echo date("Y-m-d H:i:s"); // 输出当前日期时间,格式为“年-月-日 时:分:秒”
mktime() 関数
$timestamp = mktime(0, 0, 0, 10, 1, 2021); echo $timestamp; // 输出 1633046400,即 2021 年 10 月 1 日 00:00:00 的时间戳
time() と mktime() の計算
$today = time(); $future = mktime(0, 0, 0, 1, 1, 2022); $diff = $future - $today; echo "还有 " . floor($diff / (60 * 60 * 24)) . " 天到 2022 年 1 月 1 日。"; // 输出“还有 X 天到 2022 年 1 月 1 日。”
strtotime() と date() の併用
echo date("Y-m-d H:i:s", strtotime("now")); // 输出当前日期时间,格式为“年-月-日 时:分:秒”
DateTime object
$date = new DateTime(); $date->add(new DateInterval('P1D')); echo $date->format('Y-m-d'); // 输出当前日期的明天,格式为“年-月-日”
以上がPHP の最高の日付と時刻関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。