search
HomeBackend DevelopmentPHP TutorialSummary of date and time operations in PHP_PHP tutorial

//Encode of GB2312
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);

/*Focus on understanding the strtotime() function
1. strftime is easier to use than time(). It can directly convert the commonly used '2010-02-03' into a timestamp.
2. date() can display the time before 1970. Instead of using negative numbers as parameter 2
3. Date calculation can be transferred using timestamp. To calculate the number of days difference between two dates, you can get the difference timestamp and divide it by "24 hours * 60 minutes * 60" seconds, but it is more concise to use strtotime()
4. Learn how to create a calendar using PEAR. Omit it here.
Knowledge point: There is date(Y-m-d,-800) on the Internet to calculate the time before 1970, but the WINDOW system does not support negative values, so it will always return 1970-1-1 midnight.
*/

#PHP5 must set the default zone first.
date_default_timezone_set(ETC/GMT-8);
$nowdate=2010-02-23;
$lassdate = 2010-02-22;

The echo strftime() function outputs .strftime(%Y-%m-%d %H:%M:%S,time()).
;
The echo date() function outputs .date(Y-m-d H:i:s,time()).
;
//Check date: boolean checkdate(int month,int day,int year)
$d=2010-2-31;
echo $d.Yes.(checkdate(2,31,2010)? Valid date!: Invalid date!).
;


//Determine the number of days in the month
echo There are .date(t,time()).days this month
; //28 days
//Determine the number of days in any given month
$d=2008-02-01; //Leap year, or $d=2008-02; You don’t need to enter the day
$d=strtotime($d);
echo There are .date(t,$d).days in February 2008
; //29 days

$d=getdate();
echo

;<br>
print_r($d);<br>
echo 
;
/*Array(
[seconds] => 42
[minutes] => 16
[hours] => 13
[mday] => 23
[wday] => 2
[mon] => 2
[year] => 2010
[yday] => 53
[weekday] => Tuesday
[month] => February
[0] => 1266902202
)
*/

//echo date("Y-m-d H:i:s",-8000);
//setlocale(LC_ALL,zh_CN.gb2312); //The setlocale function has no effect on the following.
#Test strftime, mktime functions.
echo strftime(Today is: %Y-%m-%d %H:%M:%S).
;
echo strtotime(now).
; // Equivalent to time(), but the usage range of strtotime is more flexible, see below.
echo test to restore yesterday's time:.date(Y-m-d,strtotime($lassdate)).
; //You can convert the string date into a timestamp and then use date to convert it back to the original format.
$x=strtotime($lassdate);
$y=mktime(0,0,0,2,22,2010);
Yesterday's timestamp obtained by echo strtotime() is: .$x., yesterday's timestamp obtained by mktime() is: .$y.(($x==$y)?, the two are equal:, the two are not Same).
; //Equal.

#Show dates before 1970
$time_int=strtotime(1929-2-10);
echo date("Y-m-d ",$time_int).
; //The same function as the date() function in MYSQL is date_format(1996-02-05 11:07:45,%Y-%m -%d) or for_format()

/*Time operation:
*Please use method three. Other methods are for reference only. *
*/
#1. Today is the 23rd. Get the time of the day before yesterday, that is, minus two days.
$predate=2;
$pretime=$predate*24*60*60; //2-day timestamp.
echo date(The day before yesterday was: Y-m-d, time()-$pretime).
; //The day before yesterday was: 2010-02-21

#2, The number of days difference between two dates.
$olddate = 2010-02-11; //If you want to use the mktime function, you need to use explode to disassemble the date.
$oldtime = strtotime($olddate);
$passtime = time()-$oldtime; //Elapsed timestamp.
echo You've been online.floor($passtime/(24*60*60)) for days.
; //12 days.

#3. This time last year. Leap years should be taken into account when using: 365 days in an ordinary year and 366 days in a leap year.
#Method 1: Get the timestamp minus the number of days in the year.
$yDate=1;
$yDate_Y=date(Y,time())-1; //Year-1, that is, last year
$yDateYMD="$yDate_Y-01-01";
$yYMD=strtotime($yDateYMD); //The timestamp of January 1 last year.
$d=date(L,$yYMD)?366:365; //Is it a leap year
$yYearTime=$d*24*60*60;

$yYear=date(Y-m-d,time()-$yYearTime);
echo "Today last year: $yYear
"; //2009-02-23
#Method 2: Use the year that directly intercepts the current date and subtract one, but it is not rigorous and does not take leap years into account.
#Calculate 60 years ago today. Ignore any leap years that pass.
$yDate_Y=$yDate_Y-59;
$md=explode(-,date(Y-m-d));
$yYMD="$yDate_Y-{$md[1]}-{$md[2]}";
echo "60 years ago today: $yYMD
"; //1950-02-23

#Method 3: Use strtotime() and GNU date syntax---------Recommended!
//3 days later; //The current time is 2010-02-23
$d=strtotime(3 days);
echo 3 days later.date(Y-m-d,$d)."
";
//3 days ago:
$d=strtotime(-3 days);
echo 3 days ago.date(Y-m-d,$d)."
"; //2010-02-20
//One month ago:
$d=strtotime(-1 months);
echo one month ago.date(Y-m-d,$d)."
"; //2010-01-23

//2 months later:
$d=strtotime(2 months);
echo two months later.date(Y-m-d,$d)."
"; //2010-04-23

//1 year ago:
$d=strtotime(-1 years);
echo 1 year ago.date(Y-m-d,$d)."
"; //2009-02-23

//2 hours ago:
$d=strtotime(-2 hours);
echo Current: .date(Y-m-d H:i:s,time())., 2 hours ago.date(Y-m-d H:i:s,$d)."
"; //Currently: 2010 -02-23 13:38:49, 2 hours ago 2010-02-23 11:38:49

#DateTime constructor: object DateTime([string $time [,dateTimeZone $timezone])
$date = new DateTime(2010-02-23 12:26:36);
echo $date->format(Y-m-d H:i:s)."
"; //Same as date() function. 2010-02-23 12:26:36
//Reset time:
//1. Reset date: boolean setDate(int year,int month,int day)
//2. Reset time: boolean setDate(int hour,int minute[,int second])
$date->setDate(2010,2,28);
echo $date->format(Y-m-d H:i:s)."
"; //2010-02-28 12:26:36
//Date calculation, equivalent to strtotime()
above $date->modify("+7 hours");
echo $date->format(Y-m-d H:i:s)."
"; //2010-02-28 19:26:36
$date->modify("3 days");
echo $date->format(Y-m-d H:i:s)."
"; //2010-03-03 19:26:36 //Start from the 28th that was changed above

/*PHP5 does not support the money_format function in WIN?
setlocale(LC_MONETARY,zh_CN);
echo money_format("%i",786.56);//?Fatal error: Call to undefined function money_format()
*/
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/508431.htmlTechArticle?php //Encode header of GB2312 (Cache-Control: no-store, no-cache, must-revalidate ); header(Cache-Control: post-check=0, pre-check=0, false); /*Focus on understanding strtotime() function 1, strf...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment