How to get the current time in php
php method to get the current point: first create a PHP sample file; then directly obtain and output the current time through the "echo date('Y-m-d h:i:s', time());" statement. Can.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
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 strtotime function
strtotime('now'));
2. Get the current time
Format the timestamp through the date function
echo date('Y-m-d h:i:s', time( )); // 2018-10-3 15:57:05
3. Time zone issues
The above methods all have time zone issues, specific solutions:
Method 1: Change php.ini to the Chinese time zone
date.timezone = PRC
Method 2: Temporarily set it to in the php file China time zone
date_default_timezone_set('PRC');
php gets the current time and timestamp
What you need to know first The method to obtain the time in PHP is date(), and the methods to obtain the timestamp in PHP are time() and strtotime(). They are explained below.
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. [Recommended learning: "PHP Video Tutorial"]
date($format) usage example:
echo date('Y-m -d'); Output result: 2018-10-03
echo date('Y-m-d H:i:s'); Output result: 2018-10-03 23:00:00
echo date('Y-m -d', time()); Output result: 2018-10-03 23:00:00 (the result is the same as above, except that there is an additional timestamp parameter) (method of converting timestamp to date format)
echo date( 'Y').'Year'.date('m').'Month'.date('d').'Day', output result: October 3, 2018
Example These are just the changes in the format. 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 there are less than two 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 - hours in 12-hour format; such as: "01" to "12"
H - hours in 24-hour format; such as: "00" to " 23"
g - The hour in 12-hour format, do not add zeros if there are less than two digits; such as: "1" to 12"
G - The hour in 24-hour format, do not add zeros if there are less than two digits; such as: "0 " to "23"
i - minutes; such as: "00" to "59"
j - days, two digits, if there are less than two digits, no zeros will be added; such as: "1" to "31"
l - day of the week, full English name; such as: "Friday"
m - month, two digits, if there are 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 zero will be added; such as: "1" to "12"
M - month, three English letters; such as: "Jan"
s - seconds; For example: "00" to "59"
S - add an English ordinal number at the end of the word, two English letters; such as: "th", "nd"
t - specify the number of days in the month; such as: "28" to "31"
U - Total 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 example:
time(); Output result: 1332427715 (the returned result is the current timestamp)
strtotime($time) usage example:
echo strtotime('2012-03-22'); Output result: 1332427715 (The result here is written casually, for illustration only)
echo strtotime(date('Y-d-m')); Output result: (Combined with date(), the result is the same as above) (Time and date conversion is a timestamp)
strtotime() also has a very powerful usage. The parameters can be added to the operation of numbers, year, month, day and week English characters. The example is as follows:
echo date('Y-m-d H:i:s' ,strtotime(' 1 day')); Output result: 2012-03-23 23:30:33 (you will find the time at this time tomorrow is output)
echo date('Y-m-d H:i:s',strtotime( '-1 day')); Output result: 2012-03-21 23:30:33 (time at this time yesterday)
echo date('Y-m-d H:i:s',strtotime(' 1 week') ); Output result: 2012-03-29 23:30:33 (time at this time next week)
echo date('Y-m-d H:i:s',strtotime('next Thursday')); Output result :2012-03-29 00:00:00 (time at this time next Thursday)
echo date('Y-m-d H:i:s',strtotime('last Thursday')); Output result: 2012-03 -15 00:00:00 (time at this time last Thursday)
There are so many examples above. You can study more by yourself. The strtotime() method can be passed through the English text. Control the display of Unix timestamps and obtain the required time and 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 returns an array containing Two elements: one is the number of seconds and the other is the number of milliseconds expressed as a decimal. We can use this method to obtain the number of milliseconds returned. The method is as follows:
function getMillisecond(){ list($s1,$s2)=explode(' ',microtime()); return (float)sprintf('%.0f',(floatval($s1)+floatval($s2))*1000);
The difference between the current time taken and the actual time is 8 Hourly solution
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 several solutions as follows Method:
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.
Both methods are available, depending on personal preference.
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!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.
