


Detailed explanation of PHP time and date functions, detailed explanation of PHP date functions
All functions in PHP are from the UNIX era, that is, starting from January 1, 1970.
The date is the number of seconds since this time.
When a function calls the number of seconds since this time, treat it as a timestamp.
Local time function
1. string date(string format,inieger timestamp)
This function returns a string representing time, which is controlled by string format.
Such as:
<? print(date("Y年 m月d日");//输出当前,年月日. print(date("Y年 m月d日",60*60*24*365*10);//输出1980年1月1日. ?>
Maybe you will ask, why is there no timestamp? If timestamp is empty, or does not write, it means using the current time timestamp.
Control character representing the year: Y---four-digit year y---two-digit year
Control character representing the month: m---month from 1-12 F---English month name M---abbreviated month name
The control character representing the day number: d---the day of the month with 0 in front j--the day number without 0 in front
The control symbol representing the day of the week: l--English week D--Abbreviated week
The control character representing the hour: h--hours from 1 to 12 H---hours from 0 to 23
Control symbol indicating morning and afternoon a ---am or pm A ---AM or PM
Control character representing minutes: i---value 00-59
Indicates the number of days in a year: z--the number of days in a year
2. array getdate(integer timestamp)
This function returns a matrix.
Such as:
<? $current_date=getdate(); print($current_date("hours")); print($current_date("minutes"); print($current_date("seconds"); ?>
Description:
Element Description
hours Hours in 24-hour format
mday Mid-month date
minutes minutes
mon month in numeric form
month Full name of month
seconds seconds
wday Day of the week as a number from 0 to 6
weekday The name of the day of the week
year year
0 timestamp is the number of seconds from January 1, 1970 to the present
yday Numeric date of the year
3. boolean checkdate(integer month,integer day,integer year)
This function checks whether the date is legal. For example:
<? if(checkdate(2,29,1980)) print("日期合法!n"); ?>
4. integer time()
This function obtains the current timestamp. For example:
<? print(time());//输出一大串整数 ?>
5. integer mktime(integer hour,integer minutes,integer seconds,integer month, integer day,integer year)
This function returns the timestamp of the given date, i.e. the number of seconds since January 1, 1970.
If a parameter is out of range, this function can also explain it. For example, 13th is January of the next year.
Such as:
<? $currenthour=date("H"); print("50个小时后为:"); print(date("h:i A l F dS,Y",mktime($currenthour+50))); print("<br>n"); ?>
6. string microtime()
This function returns a string consisting of the number of milliseconds of the current time, a space, and the number of seconds since 1970
<? print("start:microtime()<br>n"); for($index=0;$index<1000;$index++) print("good!"); print("stop:microtime()<br>n"); ?>
Also, various Linwich Standard Time functions
The above is the entire content of this article, I hope you all like it.

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

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

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

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

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

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

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

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


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

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 English version
Recommended: Win version, supports code prompts!

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools