search
HomeBackend DevelopmentPHP TutorialPHP时间操作方法总结

PHP时间操作方法总结

php中如何获取当前的时间?

php如何获取当前时间戳?

首先需要知道的是在php中获取时间方法是date(),在php中获取时间戳方法有time()、strtotime()。

下面分别说明。date() 格式为:date($format, $timestamp),format为格式、timestamp为时间戳(可选)。time() 返回当前时间的 Unix 时间戳,没有参数。strtotime($time, $now) 将任何英文文本的日期时间描述解析为 Unix 时间戳。$time 为必填,规定要解析的时间字符串;$now 用来计算返回值的时间戳,如果省略该参数,则使用当前时间。date($format)用法举例:

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

举例就这几个,只是格式的变动而已,下面是字符串格式中各个字母的含义:a - "am" 或是 "pm" 
 
A - "AM" 或是 "PM" 
 
d - 几日,二位数字,若不足二位则前面补零; 如: "01" 至 "31" 
 
D - 星期几,三个英文字母; 如: "Fri" 
 
F - 月份,英文全名; 如: "January" 
 
h - 12 小时制的小时; 如: "01" 至 "12" 
 
H - 24 小时制的小时; 如: "00" 至 "23" 
 
g - 12 小时制的小时,不足二位不补零; 如: "1" 至 12" 
 
G - 24 小时制的小时,不足二位不补零; 如: "0" 至 "23" 
 
i - 分钟; 如: "00" 至 "59" 
 
j - 几日,二位数字,若不足二位不补零; 如: "1" 至 "31" 
 
l - 星期几,英文全名; 如: "Friday" 
 
m - 月份,二位数字,若不足二位则在前面补零; 如: "01" 至 "12" 
 
n - 月份,二位数字,若不足二位则不补零; 如: "1" 至 "12" 
 
M - 月份,三个英文字母; 如: "Jan" 
 
s - 秒; 如: "00" 至 "59" 
 
S - 字尾加英文序数,二个英文字母; 如: "th","nd" 
 
t - 指定月份的天数; 如: "28" 至 "31" 
 
U - 总秒数 
 
w - 数字型的星期几,如: "0" (星期日) 至 "6" (星期六) 
 
Y - 年,四位数字; 如: "1999" 
 
y - 年,二位数字; 如: "99" 
 
z - 一年中的第几天; 如: "0" 至 "365"time()用法举例:

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(上个星期四此时的时间)以上举例就这么多了,更多的自己去变通研究吧,strtotime()方法可以通过英文文本的控制Unix时间戳的显示,而得到需要的时间日期格式。
 
php获取当前时间的毫秒数php本身没有提供返回毫秒数的函数,但提供了microtime()方法,它会返回一个数组,包含两个元素:一个是秒数、一个是小数表示的毫秒数,我们可以通过此方法获取返回的毫秒数,方法如下:

function getMillisecond(){<br />
list($s1,$s2)=explode(&#39; &#39;,microtime());<br />
return (float)sprintf(&#39;%.0f&#39;,(floatval($s1)+floatval($s2))*1000);<br />
}

获取的当前时间与实际时间相差8小时的解决方法实际开发中经常会碰到获取的时间与当前系统实际时间相差8个小时,这是因为时区设置问题,对于这个问题,有下面的几种解决办法:

1.在php.ini中找到date.timezone,将它的值改成 Asia/Shanghai,即 date.timezone = Asia/Shanghai(将当前时区设置为亚洲上海时区)

2.在程序开始的地方添加 date_default_timezone_set('Asia/Shanghai');即可。

好了,关于php获取当前时间、时间戳、毫秒数、时间差的总结,就写到这里了。有任何疑问,欢迎留言指正。


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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

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

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor