Home > Backend Development > PHP Tutorial > How to set date in php

How to set date in php

步履不停
Release: 2023-04-06 20:42:02
Original
3637 people have browsed it

How to set date in php

The PHP Date() function formats a timestamp into a more readable date and time.

Syntax:

date(format,timestamp)
Copy after login

format Required. Specifies the format of the timestamp.

timestamp Optional. Specify timestamp. The default is the current time and date.

Note: A timestamp is a sequence of characters that represents the date and event when a specific event occurred.

Get a simple date

The format parameters of the date() function are required and they specify how to format the date or time.

The following are some commonly used characters for dates:

d - represents the day of the month (01-31) m - represents the month (01-12) Y - represents the year ( Four digits) 1 - Indicates the day of the week

Other characters, such as "/", "." or "-" can also be inserted into the characters to add other formats.

The following examples format today's date in three different ways:

Example

<?php
echo "今天是 " . date("Y/m/d") . "<br>";
echo "今天是 " . date("Y.m.d") . "<br>";
echo "今天是 " . date("Y-m-d") . "<br>";
echo "今天是 " . date("l");
?>
Copy after login

PHP Tip - Automatic Copyright Year

Use the date() function to automatically update the version year on your website:

Example

© 2010-<?php echo date("Y")?>
Copy after login

Get a simple time

The following characters are commonly used for time:

h - 12-hour hour format with leading zero i - minutes with leading zero s - seconds with leading zero ( 00 -59) a - lowercase noon and afternoon (am or pm)

The following example outputs the current time in the specified format:

Example

<?php
echo "现在时间是 " . date("h:i:sa");
?>
Copy after login

Comments: Please Note that the PHP date() function returns the current date/time of the server!

Get the time zone

If the time returned from the code is not the correct time, it is possible that your server is located in another country or is set to Different time zones.

So if you need an accurate time based on a specific location, you can set the time zone to use.

The following example sets the time zone to "Asia/Shanghai", and then outputs the current time in the specified format:

Example

<?php
date_default_timezone_set("Asia/Shanghai");
echo "当前时间是 " . date("h:i:sa");
?>
Copy after login

Create date through PHP mktime()

The optional timestamp parameter in the date() function specifies the timestamp. If you do not specify a timestamp, the current date and time will be used (as in the example above).

The mktime() function returns the Unix timestamp of a date. A Unix timestamp contains the number of seconds between the Unix epoch (January 1, 1970 00:00:00 GMT) and the specified time.

语法:

mktime(hour,minute,second,month,day,year)
Copy after login

下面的例子使用 mktime() 函数中的一系列参数来创建日期和时间:

实例

<?php
$d=mktime(9, 12, 31, 6, 10, 2015);
echo "创建日期是 " . date("Y-m-d h:i:sa", $d);
?>
Copy after login

通过 PHP strtotime() 用字符串来创建日期

PHP strtotime() 函数用于把人类可读的字符串转换为 Unix 时间。

语法

strtotime(time,now)
Copy after login

下面的例子通过 strtotime() 函数创建日期和时间:

实例

<?php
$d=strtotime("10:38pm April 15 2015");
echo "创建日期是 " . date("Y-m-d h:i:sa", $d);
?>
Copy after login

PHP 在将字符串转换为日期这方面非常聪明,所以您能够使用各种值:

实例

<?php
$d=strtotime("tomorrow");
echo date("Y-m-d h:i:sa", $d) . "<br>";
$d=strtotime("next Saturday");
echo date("Y-m-d h:i:sa", $d) . "<br>";
$d=strtotime("+3 Months");
echo date("Y-m-d h:i:sa", $d) . "<br>";
?>
Copy after login

不过,strtotime() 并不完美,所以请记得检查放入其中的字符串。(php视频教程)

更多日期实例

下例输出下周六的日期:

实例

<?php
$startdate = strtotime("Saturday");
$enddate = strtotime("+6 weeks",$startdate);
while ($startdate < $enddate) {
  echo date("M d", $startdate),"<br>";
  $startdate = strtotime("+1 week", $startdate);
}
?>
Copy after login

下例输出七月四日之前的天数:

实例

<?php
$d1=strtotime("December 31");
$d2=ceil(($d1-time())/60/60/24);
echo "距离十二月三十一日还有:" . $d2 ." 天。";
?>
Copy after login

The above is the detailed content of How to set date in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template