Home  >  Article  >  Backend Development  >  How to use date in php to display the day of the month

How to use date in php to display the day of the month

青灯夜游
青灯夜游Original
2021-12-09 18:15:492852browse

The way to use date to display the day of the month in php is: "echo date('m', timestamp)."month".date('d', timestamp)."day";" ;The first parameter of the date() function is set to "m" to output the number of the month represented, and the first parameter is set to "d" to output the number representing the number of days in the month.

How to use date in php to display the day of the month

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

php uses date to display the day of the month Date

<?php
header("Content-type:text/html;charset=utf-8");
$d="1639908825";
echo "指定时间戳为: ".date(&#39;m&#39;,$d)."月".date(&#39;d&#39;,$d)."日";
?>

How to use date in php to display the day of the month

Note:

PHP date() function can format the timestamp into a more readable format OK date and time.

Grammar:

date ($format [, $timestamp ] )
  • format Required. Specifies the format of the timestamp. When the format value is set to:

    • "m": the month number (01 - 12) can be output

    • "d": Can output a number representing the number of days in the month (01 - 31)

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

If timestamp is omitted, the month and day of the current time can be output.

<?php
header("Content-type:text/html;charset=utf-8");
echo "现在是: ".date(&#39;m&#39;)."月".date(&#39;d&#39;)."日";
?>

How to use date in php to display the day of the month

How to use date in php to display the day of the month

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to use date in php to display the day of the month. 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