This article mainly shares with you the detailed explanation of the date() function in PHP, hoping to help everyone.
<?php // 设置时区 date_default_timezone_set("PRC"); // 打印当前时间 PHP_EOL 换行符,兼容不同系统 echo date("Y-m-d H:i:s") . PHP_EOL; echo date("Y 年 m 月 d 日 H 点 i 分 s 秒") . PHP_EOL; // 指定时间 $time = strtotime("2018-01-18 08:08:08"); // 将指定日期转成时间戳 echo date("Y-m-d H:i:s", $time) . PHP_EOL; ?>
Code example of curdate() function in MySQL
php check date usage of checkdate() function
php date() function parameters explained in detail
The above is the detailed content of Detailed explanation of date() function in PHP. For more information, please follow other related articles on the PHP Chinese website!