Home > php教程 > PHP开发 > Example of converting php time to seconds

Example of converting php time to seconds

黄舟
Release: 2016-12-21 10:25:19
Original
2171 people have browsed it

Converting PHP time to seconds is very simple. We use the strtotime function. Let’s introduce it to you here. I hope the article can help you.

Convert the time string in the format of HH:MM:SS into seconds, you can use the date_parse function to parse specific time information.

<?php 
  $time = &#39;21:30:10&#39;; 
  $parsed = date_parse($time); 
  $seconds = $parsed[&#39;hour&#39;] * 3600 + $parsed[&#39;minute&#39;] * 60 + $parsed[&#39;second&#39;]; 
  echo $seconds;
?>
Copy after login

More detailed examples, how many days/hours/minutes to convert

function get_stay_time($timestamp, $is_hour = 1, $is_minutes = 1) 
{ 
    $CI =& get_instance(); 
    if(emptyempty($timestamp) || $timestamp <= 60) { 
        return false; 
    } 
    $time = time(); 
    $remain_time = $time - $timestamp; 
    $day = floor($remain_time / (3600*24)); 
    $day = $day > 0 ? $day.&#39;天&#39; : &#39;&#39;; 
    $hour = floor(($remain_time % (3600*24)) / 3600); 
    $hour = $hour > 0 ? $hour.&#39;小时&#39; : &#39;&#39;; 
    if($is_hour && $is_minutes) { 
        $minutes = floor((($remain_time % (3600*24)) % 3600) / 60); 
        $minutes = $minutes > 0 ? $minutes.&#39;分&#39; : &#39;&#39;; 
        return $day.$hour.$minutes; 
    } 
    if($hour) { 
        return $day.$hour; 
    } 
    return $day; 
}
Copy after login

The above is the content of the example of converting PHP time into seconds, more For related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template