search
HomeBackend DevelopmentPHP ProblemHow to get the current time in php

How to get the current time in php

1. Get the current timestamp

Method 1: Through the time function

time();

Method 2: Through the REQUEST_TIME element in $_SERVER

$_SERVER['REQUEST_TIME'];

Method 3: Through the strtotime function

strtotime('now');

2. Get the current time

Through the date function format Timestamp

echo date('Y-m-d h:i:s', time()); // 2018-10-3 15:57:05

3. Time zone problem

The above methods all have time zone problems, specific solutions:

Method 1: Modify in php.ini Set the Chinese time zone

date.timezone = PRC

Method 2: Temporarily set the Chinese time zone in the php file

date_default_timezone_set('PRC');

Related recommendations: "PHP Tutorial"

php gets the current time and timestamp

The first thing you need to know is that the method to get the time in php is date(), and the methods to get the timestamp in php are time() and strtotime(). The following are explained respectively:

date() format is: date($format, $timestamp), format is the format, timestamp is the timestamp (optional).

time() returns the Unix timestamp of the current time, without arguments.

strtotime($time, $now) Parses any English text datetime description into a Unix timestamp. $time is required and specifies the time string to be parsed; $now is used to calculate the timestamp of the return value. If this parameter is omitted, the current time is used.

date($format) usage examples:

echo date('Y-m-d');输出结果:2018-10-03
echo  date('Y-m-d H:i:s');输出结果:2018-10-03 23:00:00
echo  date('Y-m-d', time());输出结果:2018-10-03 23:00:00(结果同上,只是多了一个时间戳参数)
(时间戳转换为日期格式的方法)
echo  date('Y').'年'.date('m').'月'.date('d').'日',输出结果:2018年10月3日

These are just a few examples, just format changes. The following is the meaning of each letter in the string format:

a - "am" or "pm"

A - "AM" or "PM"

d - Day, two digits, if less than two If the digits are digits, add zeros in front; such as: "01" to "31"

D - day of the week, three English letters; such as: "Fri"

F - month, full English name; Such as: "January"

h - hour in 12-hour format; such as: "01" to "12"

H - hour in 24-hour format; such as: "00" to "23 "

g - Hours in 12-hour format, do not add zeros if there are less than two digits; such as: "1" to 12"

G - Hours in 24-hour format, do not add zeros if there are less than two digits ; For example: "0" to "23"

i - minutes; For example: "00" to "59"

j - days, two digits, if there are less than two digits, no additional digits will be added Zero; such as: "1" to "31"

l - day of the week, full English name; such as: "Friday"

m - month, two digits, if less than two digits Add zeros in front; such as: "01" to "12"

n - month, two digits, if there are less than two digits, no zeros are added; such as: "1" to "12"

M - month, three English letters; such as: "Jan"

s - seconds; such as: "00" to "59"

S ​​- add an English ordinal number at the end of the word, two English letters; such as: "th", "nd"

t - the number of days in the specified month; such as: "28" to "31"

U - the total number of seconds

w - Numeric day of the week, such as: "0" (Sunday) to "6" (Saturday)

Y - Year, four digits; such as: "1999"

y - year, two digits; such as: "99"

z - day of the year; such as: "0" to "365"

time() Usage examples:

time();输出结果:1332427715(返回的结果即当前的时间戳)
strtotime($time)用法举例:
echo strtotime('2012-03-22');输出结果:1332427715(此处结果为随便写的,仅作说明使用)
echo strtotime(date('Y-d-m'));输出结果:(结合date(),结果同上)(时间日期转换为时间戳)
strtotime()还有个很强大的用法,参数可加入对于数字的操作、年月日周英文字符,示例如下:
echo date('Y-m-d H:i:s',strtotime('+1 day'));输出结果:2012-03-23 23:30:33(会发现输出明天此时的时间)
echo date('Y-m-d H:i:s',strtotime('-1 day'));输出结果:2012-03-21 23:30:33(昨天此时的时间)
echo date('Y-m-d H:i:s',strtotime('+1 week'));输出结果:2012-03-29 23:30:33(下个星期此时的时间)
echo date('Y-m-d H:i:s',strtotime('next Thursday'));输出结果:2012-03-29 00:00:00(下个星期四此时的时间)
echo date('Y-m-d H:i:s',strtotime('last Thursday'));输出结果:2012-03-15 00:00:00(上个星期四此时的时间)

That’s all the above examples, you can study more by yourself. The strtotime() method can control the display of Unix timestamps through English text to get the required time. Date format.

php Gets the number of milliseconds in the current time

php itself does not provide a function that returns the number of milliseconds, but it provides the microtime() method, which will return a The array contains two elements: one is the number of seconds and the other is the number of milliseconds expressed as a decimal. We can obtain the returned number of milliseconds through this method. The method is as follows:

function getMillisecond(){
    list($s1,$s2)=explode(' ',microtime());
    return (float)sprintf('%.0f',(floatval($s1)+floatval($s2))*1000);

The current time and the actual time taken are Solution to the time difference of 8 hours

In actual development, it is often encountered that the obtained time is 8 hours different from the actual time of the current system. This is because of the time zone setting problem. For this problem, there are the following Several solutions:

1. Find date.timezone in php.ini and change its value to Asia/Shanghai, that is, date.timezone = Asia/Shanghai (set the current time zone to Asia Shanghai time zone )

2. Add date_default_timezone_set('Asia/Shanghai'); at the beginning of the program.

The above is the detailed content of How to get the current time in php. 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
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 24, 2022 am 11:49 AM

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

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

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

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(" ","其他字符",$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 Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment