PHP Common Date phase functions (date plus subtraction and conversion time)

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags add and subtract code date difference echo function functions php

PHP Common date phase function [date plus minus, two date difference, date conversion time Cut]

The following code is some of the most commonly used date processing functions, can be two times the date plus and minus, the difference between the two dates, date conversion time cut.

echo Date (' y-m-d ', Strtotime (' +1 d ', strtotime (' 2009-07-08 '))//Date days Add function

echo Date ("y-m-d", ' 1246982400 ');
Echo ' <br> ';
echo Date ("y-m-d", ' 1279123200 ');
Die ();

$d = "2009-07-08 10:19:00";
echo Date ("Y-m-d", Strtotime ("$d +1 Day")); Date days Add function

function Datetotime ($d)//convert date to time heap cut
{
$year = ((int) substr ("$d", 0,4);

$month = ((int) substr ("$d", 5,2))/month

$day = ((int) substr ("$d", 8,2);

Return Mktime (0,0,0, $month, $day, $year);
}


/*

The following function calculates two dates

*/

$Date _1= "2009-07-08";

echo $Date _1+1;

$Date _2= "2009-06-08";
$Date _list_a1=explode ("-", $Date _1);

$Date _list_a2=explode ("-", $Date _2);

$d 1=mktime (0,0,0, $Date _list_a1[1], $Date _list_a1[2], $Date _list_a1[0]);

$d 2=mktime (0,0,0, $Date _list_a2[1], $Date _list_a2[2], $Date _list_a2[0]);

$Days =round (($d 1-$d 2)/3600/24);

echo "Two dates before the difference between $days days";

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.