


Examples of conversion and calculation of UNIX timestamps and dates in PHP, phpunix
UNIX timestamp is a compact and concise method of saving dates and times. It is a method of saving the current date and time in most UNIX systems and a standard for representing dates and times in most computer languages. Format. Represents Greenwich Mean Time as a 32-bit integer, for example, using certificate 11230499325 to represent a timestamp of the current time. The UNIX timestamp is the number of seconds that have elapsed since midnight on January 1, 1970 (midnight UTC/GMT) to the current time. Zero o'clock on January 1, 1970 serves as the basis for all date calculations, and this date usually becomes the UNIX epoch.
Because UNIX timestamp is a 32-bit digital format, it is particularly suitable for computer processing, such as calculating the number of days between two points in time. In addition, due to cultural and regional differences, there are different time formats and time zone issues. So UNIX timestamp is also a universal format designed to be standardized according to a time zone, and this format can be easily converted to any format. Also because the UNIX timestamp is represented by a 32-bit certificate, you will encounter some problems when processing events before 1902 or after 2038. In addition, under Windows, since the timestamp cannot be a negative number, an error will occur when using the timestamp function provided in PHP to process dates before 1970. To make your PHP code portable, you must keep this in mind.
Convert date and time to UNIX timestamp
In PHP, if you need to convert date and time into UNIX timestamp, you can call the mktime() function. The prototype of this function looks like this:
int mktime([int hour [,int minute[,int second[,int month[,int day[int year]]]]]])
All parameters in this function are optional. If the parameters are empty, the current time will be converted into a UNIX timestamp by default. In this way, it has the same function as directly calling the time() function to obtain the current UNIX timestamp. Parameters can also be omitted from right to left, and any omitted parameters will be set to the current values of the local date and time. If you only want to convert the date and don't care about the specific time, you can set the first three conversion time parameters to 0. The mktime() function is very useful for date operations and verification. It can automatically correct out-of-bounds input. As shown below:
echo date("Y-m-d",mktime(0,0,0,12,36,2008))."n"; //The date is more than 31 days, and output after calculation 2009-01-05
echo date("Y-m-d",mktime(0,0,0,14,1,2010))."n"; //The month exceeds 12, and the calculated output is 2011-02-01
echo date("Y-m-d",mktime(0,0,0,1,1,2012))."n"; //No problem transformation, output result 2012-01-01
echo date("Y-m-d",mktime(0,0,0,1,1,99))."n"; // Will convert 99 years to 1999, 1990-01-01
?>
If you need to directly parse the date and time description of any English text into a UNIX timestamp, you can use the strtotime() function. The circle of the function is as follows:
int strtotime(string time[,int now])
The function strtotime() can create a timestamp of Acura Time in the natural language of English, accepting a string containing a US English date format and trying to parse it into a UNIX timestamp (since January 1 1970 00:00:00 GMT description), its value is relative to the time given by the now parameter. If no secondary parameter is provided, the current system time is used. If the function is executed successfully, it returns the timestamp, otherwise it returns FALSE. The comparison with mktime() is as follows:
echo date("Y-m-d", strtotime("now")); //Output the current timestamp
echo date("Y-m-d", strtotime("8 may 2012")); //Output 2012-05-08
echo date("Y-m-d", strtotime("+1 day")); //Output the current date plus 1 day
echo date("Y-m-d", strtotime("last monday")); //Output 2012-04-02
?>
The following example uses the strtotime() function to write an anniversary countdown program to introduce the practical application of this function in project development. The sample code is as follows:
$now =strtotime("now"); //Current time
$endtime= strtotime("2014-08-18 08:08:08"); //Set the graduation time and convert it to a timestamp
$second = $endtime-$now; //Get the timestamp from graduation time to the current time (number of seconds)
$year = floor($second/3600/24/365); //Convert the number of years from this timestamp
$temp =$second-$year*365*24*3600; //Remove the seconds of the entire year from this timestamp, leaving only the seconds of the month
$month=floor($temp/3600/24/30); //Convert the number of months from this timestamp
$temp=$temp-$month*30*3600*24; //Remove the seconds of the whole month from the timestamp, leaving only the description of the day
$day = floor($temp/24/3600); //Convert the remaining days from this timestamp
$temp=$temp-$day*3600*24; //Remove the whole day's seconds from this timestamp, leaving only the hour's seconds
$hour = floor($temp/3600); //Convert the remaining hours from this timestamp
$temp=$temp- $hour*3600; //Remove the seconds of the hour from the timestamp, leaving only the seconds of the minute
$minute=floor($temp/60); //Convert the remaining fraction from this timestamp
$second1=$temp-$minute*60; //There are only seconds left
echo "There are ($year) years ($month) ($day) days ($hour) hours ($minute) minutes ($second1) seconds before graduation.";
?>
Note: If the given year is in two-digit format, its value 0-69 represents 2000-2069, and 70-100 represents 1970-2000.
Calculation of dates
In PHP, the simplest way to calculate the length between two dates is to calculate the difference between two UNIX timestamps. For example, a PHP script that receives a user's date of birth from an HTML form and calculates the user's age. As shown below:
//Receive the year, month, and day of birth date submitted by the user from the form
$year = 1981;
$month = 11;
$day = 05;
$birthday = mktime(0,0,0,$month,$day,$year); //Convert birth date to UNIX timestamp
$nowdate = time(); //Call the time() function to get the UNIX timestamp of the current time
$ageunix = $nowdate -$birthday; //Subtract the two timestamps to obtain the UNIX timestamp of the user's age
$age = floor($ageunix/3600/24/365); //Divide the UNIX timestamp by the number of seconds in a year to get the user's age
echo "Age: $age";
?>
In the above script, the mktime() function is called to convert the user's date of birth into a UNIX timestamp, and then the time() function is called to obtain the UNIX timestamp of the current time. Because the date format is expressed using integers, they can be subtracted. The UNIX timestamp obtained after calculation is divided by the number of seconds in a year to convert the UNIX timestamp into annual units.
on most UNIX systems
php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

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

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

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

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

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

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


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

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.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
