Home  >  Article  >  Backend Development  >  Detailed explanation of date() function in PHP

Detailed explanation of date() function in PHP

小云云
小云云Original
2018-03-22 11:06:341968browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn