//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()
*/
?>

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

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 latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
