Home >Backend Development >PHP Tutorial >PHP in-depth understanding of strtotime function_PHP tutorial
•Some uses of strtotime function
•Basic principles of implementation of strtotime function
•The reason why strtotime(”-1 month”) failed to evaluate
Some usages of strtotime function
1. strtotime("JAN") and strtotime("January")
The effect of these two usages is the same. They both return today's day in the specified month. If there is no today in the specified month, it will be postponed to the next month. For example, if February is calculated on 2011-03-31, the code is:
The program will output: 2011-03-03 00:00:00. From the appearance point of view, this result may not necessarily be what we want, but it can also be regarded as a solution. What determines this solution? The strtotime function only calculates the month when calculating the month, which is equivalent to directly setting the month to the value of the specified month, and such as jan and January will have a corresponding internal value.
2. first keyword
first is an auxiliary keyword. It can be used in combination with keywords such as week, day, etc. that can specify confirmation values. For example, to find the first Sunday in 2011:
In the PHP source code, the combined use of first, week and day is separate, that is, first day corresponds to a processing operation. In the final C implementation, the value of day is specified as 1, that is, the d field in the time structure is specified as 1. The following code:
3. previous and next keywords
Similar to first, the previous keyword can be used in combination with week and day to indicate the day of the week or day before the specified time. The code is as follows:
The program will output: 2011-01-30 00:00:00
The program seeks the Sunday before 2011-02-01.
The next keyword is the opposite of previous, it represents the next day of the week or the day after.
4. last keyword
The last keyword can be used as either the previous or the last one. For the date of last Sunday:
The program will output: 2011-01-30 00:00:00
When the program is used as the last, its application scenario is the last day of the month where the specified date is located, which is equivalent to the result of date("t"). Please find the last day of February 2000:
The first, previous, last and this keywords belong to the same group in the re file.
5. back and front keywords
These two keywords are forward and backward operations on the hours of the day, and their calling format is as follows:
•back means to set the time to 15 minutes of the hour after the specified hour value. If it is 24:00, it will be counted to 0:15 of the next day.
•Front means setting the time to 45 minutes of the hour before the specified hour value. If it is 0 o'clock, it is calculated as 23:45 of the previous day.
The above code outputs: 2011-02-02 00:15:00 2011-02-01 23:45:00. The arrays followed by back of and front of must be greater than or equal to 0 and less than or equal to 24.
Basic principles of implementation of strtotime function
The official documentation describes the strtotime function as follows: This function is expected to accept a string containing a US English date format and try to parse it into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 GMT), Its value is relative to the time given by the now parameter. If this parameter is not provided, the current system time is used.
This is a standard PHP built-in function that has existed since PHP4. The strtotime function is loaded as an extension, and its full implementation is available in the ext/date directory. As a standard built-in function, its definition format is also standard, as follows:
In the input processing, the situation where both parameters exist is first identified and processed. If it is not in this state, the situation where the second parameter does not exist is processed. If neither parameter exists, an error is reported and FALSE is returned.
The first parameter of the strtotime function is a string. For this string, due to its complexity, PHP uses the same tool as its lexical parsing: re2c. In the /ext/date/lib directory, we can see its original re file from the parse_date.re file. When the user passes in a string in the form of a parameter, the string will be handed over to this program for processing, and different processing functions will be matched according to the different strings. For example, if strtotime("yesterday") is called, when analyzing the string, it will match the yesterday string. The corresponding function of this string is as follows:
Here are several key structures:
The reason why strtotime(”-1 month”) failed to evaluate
Although the strtotime("-1 month") method will fail to evaluate the number of days in the next month compared to the previous month, there is nothing wrong with this in essence. There is nothing wrong with PHP's implementation. It's just that our needs dictate that we can't use this method, so we call it an evaluation failure.
Let's look at its implementation process. Since there is no second parameter, the program uses the default current time. The first parameter is passed in the -1 month string. The regular expression in the re file corresponding to this string is:
In the end, relative will correspond to a series of operations. The program will recognize the -1 in front and the month string in the back. Month corresponds to an operation type: TIMELIB_MONTH. After this, perform operations based on the identified numbers and operation types, as shown in the following code:
The above code directly records the relative value of the month minus one. But for situations like March 31st, where there is no 31st in February, the program will automatically calculate the date to the next month.