PHP calculates a difference of two timestamps

Source: Internet
Author: User
PHP calculates a difference of two timestamps

/** * Calculates the difference between two timestamps * @param $begin _time * @param $end _time * @return Array */ functiontimediff( $begin _time, $end _time ){if($begin _time<$end _time) {$starttime=$begin _time;$endtime=$end _time; }Else{$starttime=$end _time;$endtime=$begin _time; }$timediff=$endtime-$starttime;$days= Intval ($timediff/86400);$remain=$timediff%86400;$hours= Intval ($remain/3600);$remain=$remain%3600;$mins= Intval ($remain/ -);$secs=$remain% -;$res=Array("Day"=$days,"Hour"=$hours,"Min"=$mins,"SEC"=$secs); Log::info ($res);return$res; }

'). addclass (' pre-numbering '). Hide (); $ (this). addclass (' has-numbering '). Parent (). append ($numbering); for (i = 1; i <= lines; i++) {$numbering. Append ($ ('
  • '). Text (i)); }; $numbering. FadeIn (1700); }); });

    The above describes the PHP two timestamp difference, including the aspects of the content, I hope the PHP tutorial interested in a friend helpful.

  • 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.