แปลงวินาทีเป็นชั่วโมง: นาที: วินาที


330

ฉันต้องแปลงวินาทีเป็น "ชั่วโมง: นาที: วินาที"

ตัวอย่างเช่น: "685" แปลงเป็น "00:11:25"

ฉันจะบรรลุสิ่งนี้ได้อย่างไร


4
คำถามคลุมเครือ: คุณต้องการแปลงsecondsเป็นdate/timeหรือเป็นจำนวนชั่วโมง: นาที: วินาทีหรือไม่
WonderLand

คำตอบ:


741

คุณสามารถใช้gmdate()ฟังก์ชั่น:

echo gmdate("H:i:s", 685);

166
ควรตรวจสอบให้แน่ใจว่าจำนวนวินาทีต่ำกว่า 86,400
salathe

12
H หมายถึงจำนวนชั่วโมงในหนึ่งวัน ดังนั้นถ้าคุณมี 90000 วินาทีและคุณจะใช้ H บนมันผลลัพธ์จะเป็น 01 (ชั่วโมงแรกของวันถัดไป) ไม่ใช่ 25 - มีเพียง 24 ชั่วโมงต่อวัน
MarcinWolny

7
ฉันไม่แน่ใจว่านี่เป็นคำตอบที่ถูกต้องซึ่งจะสร้างdatetime... ดังนั้นหากเราคาดหวังผลลัพธ์> 24 ชั่วโมงจะไม่ทำงาน นอกจากนี้หากเราต้องการผลลัพธ์เชิงลบ (ตัวอย่างเช่นการทำงานกับออฟเซ็ต) มันจะไม่ทำงาน -1สำหรับรายละเอียดเล็ก ๆ น้อย ๆ
WonderLand

54
นี่ไม่ควรเป็นคำตอบที่ยอมรับได้เนื่องจากข้อบกพร่องที่ชัดเจนสำหรับเวลาที่มากกว่า 24 ชั่วโมง
Scott Flack

10
สำหรับใช้กับวันที่ตัวเลขอาจมากกว่า 85399 คุณสามารถใช้echo gmdate("z H:i:s", 685);z คือจำนวนวันในปีเริ่มต้นด้วย 0 คุณสามารถตรวจสอบคู่มือวันที่ php อย่างชัดเจนเพื่อตอบสนองความต้องการเฉพาะของคุณ
Nightwolf

177

หนึ่งชั่วโมงคือ 3600 วินาที, หนึ่งนาทีคือ 60 วินาทีดังนั้นทำไมไม่:

<?php

$init = 685;
$hours = floor($init / 3600);
$minutes = floor(($init / 60) % 60);
$seconds = $init % 60;

echo "$hours:$minutes:$seconds";

?>

ซึ่งผลิต:

$ php file.php
0:11:25

(ฉันไม่ได้ทดสอบอะไรมากมายดังนั้นอาจมีข้อผิดพลาดเกิดขึ้นกับพื้น)


แต่เขาต้องการเลขศูนย์สองตัว ... "00:11:25" ไม่ใช่ "0:11:25"
แอนิเมชั่น

52
printf("%02d:%02d:%02d", $hours, $minutes, $seconds);
แอมเบอร์

5
คำตอบที่ดี แต่ให้แน่ใจว่าคุณลบ $ ชั่วโมง * 3600 และ $ นาที * 60 จาก $ init ระหว่างการดำเนินการแต่ละครั้งมิฉะนั้นคุณจะต้องนับนาทีและวินาทีเป็นสองเท่า
Mike Stowe

5
หากต้องการเพิ่มความคิดเห็นของ @ Amber ให้ใช้sprintfเพื่อส่งคืนค่าแทนที่จะพิมพ์
Allen Butler

77

ไปเลย

function format_time($t,$f=':') // t = seconds, f = separator 
{
  return sprintf("%02d%s%02d%s%02d", floor($t/3600), $f, ($t/60)%60, $f, $t%60);
}

echo format_time(685); // 00:11:25

1
ไม่ทำงานสำหรับค่าลบ หากคุณมีช่วงเวลาเป็นวินาทีเชิงลบให้ใช้สิ่งนี้:return ($t< 0 ? '-' : '') . sprintf("%02d%s%02d%s%02d", floor(abs($t)/3600), $f, (abs($t)/60)%60, $f, abs($t)%60); }
Ajax

66

ใช้ฟังก์ชั่นgmdate() เฉพาะเมื่อวินาทีนั้นน้อยกว่า86400(1 วัน) :

$seconds = 8525;
echo gmdate('H:i:s', $seconds);
# 02:22:05

ดู: gmdate ()

เรียกใช้การสาธิต


แปลงวินาทีเป็นรูปแบบโดย 'foot' ไม่ จำกัด * :

$seconds = 8525;
$H = floor($seconds / 3600);
$i = ($seconds / 60) % 60;
$s = $seconds % 60;
echo sprintf("%02d:%02d:%02d", $H, $i, $s);
# 02:22:05

ดู: floor () , sprintf () , ตัวดำเนินการทางคณิตศาสตร์

เรียกใช้การสาธิต


ตัวอย่างการใช้DateTimeส่วนขยาย:

$seconds = 8525;
$zero    = new DateTime("@0");
$offset  = new DateTime("@$seconds");
$diff    = $zero->diff($offset);
echo sprintf("%02d:%02d:%02d", $diff->days * 24 + $diff->h, $diff->i, $diff->s);
# 02:22:05

ดู: DateTime :: __ สร้าง () , DateTime :: modified () , โคลน , sprintf ()

เรียกใช้การสาธิต


ช่วง-838:59:59838:59:59ตัวอย่าง MySQL ของผลลัพธ์ถูก จำกัด กับชนิดข้อมูล TIME ซึ่งมีตั้งแต่ถึงถึง :

SELECT SEC_TO_TIME(8525);
# 02:22:05

ดู: SEC_TO_TIME

เรียกใช้การสาธิต


ตัวอย่าง PostgreSQL:

SELECT TO_CHAR('8525 second'::interval, 'HH24:MI:SS');
# 02:22:05

เรียกใช้การสาธิต


30

โซลูชันอื่นใช้gmdateแต่ล้มเหลวในกรณีขอบที่คุณมีมากกว่า 86400 วินาที เพื่อให้ได้สิ่งนี้เราสามารถคำนวณจำนวนชั่วโมงของเราเองจากนั้นให้gmdateคำนวณวินาทีที่เหลือเป็นนาที / วินาที

echo floor($seconds / 3600) . gmdate(":i:s", $seconds % 3600);

อินพุต: 6030 เอาต์พุต:1:40:30

อินพุต: 2000006030 เอาต์พุต:555557:13:50


16
// TEST
// 1 Day 6 Hours 50 Minutes 31 Seconds ~ 111031 seconds

$time = 111031; // time duration in seconds

$days = floor($time / (60 * 60 * 24));
$time -= $days * (60 * 60 * 24);

$hours = floor($time / (60 * 60));
$time -= $hours * (60 * 60);

$minutes = floor($time / 60);
$time -= $minutes * 60;

$seconds = floor($time);
$time -= $seconds;

echo "{$days}d {$hours}h {$minutes}m {$seconds}s"; // 1d 6h 50m 31s

hms $ = gmdate ( "H: i: s" 12720); ไม่เพียงพอที่จะรับ Day-Hour-Min-Sec
mughal

7
gmdate("H:i:s", no_of_seconds);

จะไม่ให้เวลาในH:i:sรูปแบบถ้าno_of_secondsมากกว่า 1 วัน (วินาทีในหนึ่งวัน)
มันจะละเลยค่าวันและให้เท่านั้นHour:Min:Seconds

ตัวอย่างเช่น:

gmdate("H:i:s", 89922); // returns 0:58:42 not (1 Day 0:58:42) or 24:58:42

6

นี่คือสายการบินหนึ่งที่จัดการวินาทีเชิงลบและมากกว่า 1 วันมูลค่าวินาที

sprintf("%s:%'02s:%'02s\n", intval($seconds/60/60), abs(intval(($seconds%3600) / 60)), abs($seconds%60));

ตัวอย่างเช่น:

$seconds= -24*60*60 - 2*60*60 - 3*60 - 4; // minus 1 day 2 hours 3 minutes 4 seconds
echo sprintf("%s:%'02s:%'02s\n", intval($seconds/60/60), abs(intval(($seconds%3600) / 60)), abs($seconds%60));

เอาท์พุท: -26: 03: 04


จะไม่ทำงานหากลบและน้อยกว่า 1 ชั่วโมง: -3000 = 0:50:00 ควรเป็น -0: 50: 00
Tony Brix

6

หากคุณไม่ชอบคำตอบที่ได้รับการยอมรับหรือคำนิยมให้ลองคำนี้

function secondsToTime($seconds_time)
{
    if ($seconds_time < 24 * 60 * 60) {
        return gmdate('H:i:s', $seconds_time);
    } else {
        $hours = floor($seconds_time / 3600);
        $minutes = floor(($seconds_time - $hours * 3600) / 60);
        $seconds = floor($seconds_time - ($hours * 3600) - ($minutes * 60));
        return "$hours:$minutes:$seconds";
    }
}

secondsToTime(108620); // 30:10:20

5

ฟังก์ชั่นเขียนเช่นนี้เพื่อส่งกลับอาร์เรย์

function secondsToTime($seconds) {

  // extract hours
  $hours = floor($seconds / (60 * 60));

  // extract minutes
  $divisor_for_minutes = $seconds % (60 * 60);
  $minutes = floor($divisor_for_minutes / 60);

  // extract the remaining seconds
  $divisor_for_seconds = $divisor_for_minutes % 60;
  $seconds = ceil($divisor_for_seconds);

  // return the final array
  $obj = array(
      "h" => (int) $hours,
      "m" => (int) $minutes,
      "s" => (int) $seconds,
   );

  return $obj;
}

จากนั้นเรียกใช้ฟังก์ชันดังนี้:

secondsToTime(100);

ผลลัพธ์คือ

Array ( [h] => 0 [m] => 1 [s] => 40 )

4

ดู:

    /** 
     * Convert number of seconds into hours, minutes and seconds 
     * and return an array containing those values 
     * 
     * @param integer $inputSeconds Number of seconds to parse 
     * @return array 
     */ 

    function secondsToTime($inputSeconds) {

        $secondsInAMinute = 60;
        $secondsInAnHour  = 60 * $secondsInAMinute;
        $secondsInADay    = 24 * $secondsInAnHour;

        // extract days
        $days = floor($inputSeconds / $secondsInADay);

        // extract hours
        $hourSeconds = $inputSeconds % $secondsInADay;
        $hours = floor($hourSeconds / $secondsInAnHour);

        // extract minutes
        $minuteSeconds = $hourSeconds % $secondsInAnHour;
        $minutes = floor($minuteSeconds / $secondsInAMinute);

        // extract the remaining seconds
        $remainingSeconds = $minuteSeconds % $secondsInAMinute;
        $seconds = ceil($remainingSeconds);

        // return the final array
        $obj = array(
            'd' => (int) $days,
            'h' => (int) $hours,
            'm' => (int) $minutes,
            's' => (int) $seconds,
        );
        return $obj;
    }

จาก: แปลงวินาทีเป็นวันชั่วโมงนาทีและวินาที


3

ลองสิ่งนี้:

date("H:i:s",-57600 + 685);

นำมาจาก
http://bytes.com/topic/php/answers/3917-seconds-converted-hh-mm-ss


ไม่แน่ใจว่าทั้งหมด แต่ผมค่อนข้างมั่นใจว่ามันตั้งค่าเวลา 0 และแล้วสิ่งที่ด้านบนของที่ก็จะเป็นคำตอบที่ถูกต้อง
เคอร์รีโจนส์

สิ่งนี้จะนำหน้า 0 ของนาทีซึ่งคุณไม่สามารถปรับกับวันที่ () - ca.php.net/manual/en/function.date.php
barfoon

@barfoon - จริง แต่ฉันเชื่อว่านี่คือสิ่งที่ M.Ezz ร้องขอและเป็นมาตรฐานที่ใช้ในเวลา สิ่งนี้ดูแปลกจากประสบการณ์ของฉัน "3: 7: 5" แทนที่จะเป็น "03:07:05" หรือแม้กระทั่ง "3: 7" ดูเหมือนจะเป็นอัตราส่วนกับฉันมากกว่า
Kerry Jones

3

ฟังก์ชัน gmtdate () ไม่ทำงานสำหรับฉันเนื่องจากฉันกำลังติดตามชั่วโมงทำงานในโครงการและหากนานกว่า 24 ชั่วโมงคุณจะได้รับยอดเงินที่เหลือหลังจาก 24 ชั่วโมงถูกลบออก ในคำอื่น ๆ 37 ชั่วโมงกลายเป็น 13 ชั่วโมง (ทั้งหมดตามที่ระบุไว้ข้างต้นโดย Glavic - ขอบคุณสำหรับตัวอย่างของคุณ!) อันนี้ทำงานได้ดี:

Convert seconds to format by 'foot' no limit :
$seconds = 8525;
$H = floor($seconds / 3600);
$i = ($seconds / 60) % 60;
$s = $seconds % 60;
echo sprintf("%02d:%02d:%02d", $H, $i, $s);
# 02:22:05

3

ฟังก์ชั่นนี้เป็นประโยชน์ของฉันคุณสามารถขยาย:

function formatSeconds($seconds) {

if(!is_integer($seconds)) {
    return FALSE;
}

$fmt = "";

$days = floor($seconds / 86400);
if($days) {
    $fmt .= $days."D ";
    $seconds %= 86400;
}

$hours = floor($seconds / 3600);
if($hours) {
    $fmt .= str_pad($hours, 2, '0', STR_PAD_LEFT).":";
    $seconds %= 3600;
}

$mins = floor($seconds / 60 );
if($mins) {
    $fmt .= str_pad($mins, 2, '0', STR_PAD_LEFT).":";
    $seconds %= 60;
}

$fmt .= str_pad($seconds, 2, '0', STR_PAD_LEFT);

return $fmt;}

2

วิธีแก้ปัญหาจาก: https://gist.github.com/SteveJobzniak/c91a8e2426bac5cb9b0cbc1bdbc45e4b

นี่เป็นวิธีที่สะอาดและสั้นมาก!

รหัสนี้จะช่วยหลีกเลี่ยงการเรียกฟังก์ชั่นที่น่าเบื่อและการสร้างสตริงทีละชิ้นและฟังก์ชั่นใหญ่และใหญ่ที่ผู้คนกำลังทำ

มันสร้างรูปแบบ "1h05m00s" และใช้ศูนย์นำหน้าสำหรับนาทีและวินาทีตราบใดที่องค์ประกอบเวลาที่ไม่เป็นศูนย์นำหน้าพวกเขา

และจะข้ามส่วนประกอบชั้นนำทั้งหมดเพื่อหลีกเลี่ยงการให้ข้อมูลที่ไร้ประโยชน์เช่น "0h00m01s" (แทนซึ่งจะแสดงเป็น "1s")

ตัวอย่างผลลัพธ์: "1s", "1m00s", "19m08s", "1h00m00s", "4h08m39s"

$duration = 1; // values 0 and higher are supported!
$converted = [
    'hours' => floor( $duration / 3600 ),
    'minutes' => floor( ( $duration / 60 ) % 60 ),
    'seconds' => ( $duration % 60 )
];
$result = ltrim( sprintf( '%02dh%02dm%02ds', $converted['hours'], $converted['minutes'], $converted['seconds'] ), '0hm' );
if( $result == 's' ) { $result = '0s'; }

หากคุณต้องการทำให้โค้ดสั้นลง (แต่อ่านน้อยกว่า) คุณสามารถหลีกเลี่ยง$convertedอาร์เรย์และใส่ค่าโดยตรงในการเรียก sprintf () ดังนี้:

$duration = 1; // values 0 and higher are supported!
$result = ltrim( sprintf( '%02dh%02dm%02ds', floor( $duration / 3600 ), floor( ( $duration / 60 ) % 60 ), ( $duration % 60 ) ), '0hm' );
if( $result == 's' ) { $result = '0s'; }

ระยะเวลาต้องเป็น 0 หรือสูงกว่าในโค้ดทั้งสองข้างต้น ไม่รองรับระยะเวลาติดลบ แต่คุณสามารถจัดการกับช่วงเวลาเชิงลบได้โดยใช้รหัสทางเลือกต่อไปนี้แทน:

$duration = -493; // negative values are supported!
$wasNegative = FALSE;
if( $duration < 0 ) { $wasNegative = TRUE; $duration = abs( $duration ); }
$converted = [
    'hours' => floor( $duration / 3600 ),
    'minutes' => floor( ( $duration / 60 ) % 60 ),
    'seconds' => ( $duration % 60 )
];
$result = ltrim( sprintf( '%02dh%02dm%02ds', $converted['hours'], $converted['minutes'], $converted['seconds'] ), '0hm' );
if( $result == 's' ) { $result = '0s'; }
if( $wasNegative ) { $result = "-{$result}"; }
// $result is now "-8m13s"

โปรดทราบว่าgmdate()แฮ็คนั้นสั้นกว่านี้ แต่รองรับระยะเวลาสูงสุด 24 ชั่วโมงเท่านั้น อะไรที่เกิน 24 ชั่วโมงจะล้มเหลวถ้าคุณใช้เคล็ดลับ gmdate!
gw0

1

วิธีง่ายๆในการใช้ DateTime สำหรับสิ่งนี้คือ:

    $time = 60; //sec.
    $now = time();
    $rep = new DateTime('@'.$now);
    $diff = new DateTime('@'.($now+$time));
    $return = $diff->diff($rep)->format($format);

    //output:  01:04:65

มันเป็นทางออกที่ง่ายซึ่งช่วยให้คุณสามารถใช้รูปแบบวิธีการของ DateTime


1

ในจาวาคุณสามารถใช้วิธีนี้

   private String getHmaa(long seconds) {
    String string;
    int hours = (int) seconds / 3600;
    int remainder = (int) seconds - hours * 3600;
    int mins = remainder / 60;
    //remainder = remainder - mins * 60;
    //int secs = remainder;

    if (hours < 12 && hours > 0) {
        if (mins < 10) {
            string = String.valueOf((hours < 10 ? "0" + hours : hours) + ":" + (mins > 0 ? "0" + mins : "0") + " AM");
        } else {
            string = String.valueOf((hours < 10 ? "0" + hours : hours) + ":" + (mins > 0 ? mins : "0") + " AM");
        }
    } else if (hours >= 12) {
        if (mins < 10) {
            string = String.valueOf(((hours - 12) < 10 ? "0" + (hours - 12) : ((hours - 12) == 12 ? "0" : (hours - 12))) + ":" + (mins > 0 ? "0" + mins : "0") + ((hours - 12) == 12 ? " AM" : " PM"));
        } else {
            string = String.valueOf(((hours - 12) < 10 ? "0" + (hours - 12) : ((hours - 12) == 12 ? "0" : (hours - 12))) + ":" + (mins > 0 ? mins : "0") + ((hours - 12) == 12 ? " AM" : " PM"));
        }
    } else {
        if (mins < 10) {
            string = String.valueOf("0" + ":" + (mins > 0 ? "0" + mins : "0") + " AM");
        } else {
            string = String.valueOf("0" + ":" + (mins > 0 ? mins : "0") + " AM");
        }
    }
    return string;
}

0
function timeToSecond($time){
    $time_parts=explode(":",$time);
    $seconds= ($time_parts[0]*86400) + ($time_parts[1]*3600) + ($time_parts[2]*60) + $time_parts[3] ; 
    return $seconds;
}

function secondToTime($time){
    $seconds  = $time % 60;
    $seconds<10 ? "0".$seconds : $seconds;
    if($seconds<10) {
        $seconds="0".$seconds;
    }
    $time     = ($time - $seconds) / 60;
    $minutes  = $time % 60;
    if($minutes<10) {
        $minutes="0".$minutes;
    }
    $time     = ($time - $minutes) / 60;
    $hours    = $time % 24;
    if($hours<10) {
        $hours="0".$hours;
    }
    $days     = ($time - $hours) / 24;
    if($days<10) {
        $days="0".$days;
    }

    $time_arr = array($days,$hours,$minutes,$seconds);
    return implode(":",$time_arr);
}

0

ฉันต้องการบางสิ่งบางอย่างที่จะลดวินาทีเป็นชั่วโมงนาทีและวินาที แต่จะเกิน 24 ชั่วโมงและไม่ลดลงอีกเป็นวัน

นี่คือฟังก์ชั่นง่าย ๆ ที่ใช้งานได้ คุณสามารถปรับปรุงได้ ... แต่ที่นี่คือ:

function formatSeconds($seconds)
{
    $hours = 0;$minutes = 0;
    while($seconds >= 60){$seconds -= 60;$minutes++;}
    while($minutes >= 60){$minutes -=60;$hours++;}
    $hours = str_pad($hours, 2, '0', STR_PAD_LEFT);
    $minutes = str_pad($minutes, 2, '0', STR_PAD_LEFT);
    $seconds = str_pad($seconds, 2, '0', STR_PAD_LEFT);
    return $hours.":".$minutes.":".$seconds;
}

0
$given = 685;

 /*
 * In case $given == 86400, gmdate( "H" ) will convert it into '00' i.e. midnight.
 * We would need to take this into consideration, and so we will first
 * check the ratio of the seconds i.e. $given:$number_of_sec_in_a_day
 * and then after multiplying it by the number of hours in a day (24), we
 * will just use "floor" to get the number of hours as the rest would
 * be the minutes and seconds anyways.
 *
 * We can also have minutes and seconds combined in one variable,
 * e.g. $min_sec = gmdate( "i:s", $given );
 * But for versatility sake, I have taken them separately.
 */

$hours = ( $given > 86399 ) ? '0'.floor( ( $given / 86400 ) * 24 )-gmdate( "H", $given ) : gmdate("H", $given );

$min = gmdate( "i", $given );

$sec = gmdate( "s", $given );

echo $formatted_string = $hours.':'.$min.':'.$sec;

วิธีแปลงให้เป็นฟังก์ชัน:

function getHoursFormat( $given ){

 $hours = ( $given > 86399 ) ? '0'.floor( ( $given / 86400 ) * 24 )-gmdate( "H", $given ) : gmdate("H", $given );

 $min = gmdate( "i", $given );

 $sec = gmdate( "s", $given );

 $formatted_string = $hours.':'.$min.':'.$sec;

 return $formatted_string;

}

0

หากคุณจำเป็นต้องทำใน javascript, คุณสามารถทำมันได้ในเวลาเพียงหนึ่งบรรทัดของรหัสว่ามีคำตอบที่นี่แปลงวินาทีเพื่อ HH-MM-SS ด้วย JavaScript แทนที่SECONDSด้วยสิ่งที่คุณต้องการแปลง

var time = new Date(SECONDS * 1000).toISOString().substr(11, 8);

0

หากคุณต้องการสร้างสตริงระยะเวลาเสียง / วิดีโอเช่น YouTube เป็นต้นคุณสามารถทำได้:

($seconds >= 60) ? ltrim(gmdate("H:i:s", $seconds), ":0") : gmdate("0:s", $seconds)

จะส่งคืนสตริงเช่น:

55.55 => '0:55'
100   => '1:40'

อาจไม่ทำงานได้ดีในเวลา> = 24 ชั่วโมง


0

นี่เป็นวิธีที่น่าทำ:

function time_converter($sec_time, $format='h:m:s'){
      $hour = intval($sec_time / 3600) >= 10 ? intval($sec_time / 3600) : '0'.intval($sec_time / 3600);
      $minute = intval(($sec_time % 3600) / 60) >= 10 ? intval(($sec_time % 3600) / 60) : '0'.intval(($sec_time % 3600) / 60);
      $sec = intval(($sec_time % 3600) % 60)  >= 10 ? intval(($sec_time % 3600) % 60) : '0'.intval(($sec_time % 3600) % 60);

      $format = str_replace('h', $hour, $format);
      $format = str_replace('m', $minute, $format);
      $format = str_replace('s', $sec, $format);

      return $format;
    }

-1

ในกรณีที่คนอื่นกำลังมองหาฟังก์ชั่นที่เรียบง่ายเพื่อคืนค่าในรูปแบบที่สวยงาม (ฉันรู้ว่ามันไม่ใช่รูปแบบที่ OP ขอ) นี่คือสิ่งที่ฉันเพิ่งจะเกิดขึ้น ขอบคุณ @mughal สำหรับรหัสที่เป็นไปตามนี้

function format_timer_result($time_in_seconds){
    $time_in_seconds = ceil($time_in_seconds);

    // Check for 0
    if ($time_in_seconds == 0){
        return 'Less than a second';
    }

    // Days
    $days = floor($time_in_seconds / (60 * 60 * 24));
    $time_in_seconds -= $days * (60 * 60 * 24);

    // Hours
    $hours = floor($time_in_seconds / (60 * 60));
    $time_in_seconds -= $hours * (60 * 60);

    // Minutes
    $minutes = floor($time_in_seconds / 60);
    $time_in_seconds -= $minutes * 60;

    // Seconds
    $seconds = floor($time_in_seconds);

    // Format for return
    $return = '';
    if ($days > 0){
        $return .= $days . ' day' . ($days == 1 ? '' : 's'). ' ';
    }
    if ($hours > 0){
        $return .= $hours . ' hour' . ($hours == 1 ? '' : 's') . ' ';
    }
    if ($minutes > 0){
        $return .= $minutes . ' minute' . ($minutes == 1 ? '' : 's') . ' ';
    }
    if ($seconds > 0){
        $return .= $seconds . ' second' . ($seconds == 1 ? '' : 's') . ' ';
    }
    $return = trim($return);

    return $return;
}

-1

ใครก็ตามที่กำลังมองหาสิ่งนี้ในอนาคตสิ่งนี้จะให้รูปแบบที่โปสเตอร์เริ่มต้นถาม

$init = 685;
$hours = floor($init / 3600);
$hrlength=strlen($hours);
if ($hrlength==1) {$hrs="0".$hours;}
else {$hrs=$hours;} 

$minutes = floor(($init / 60) % 60);
$minlength=strlen($minutes);
if ($minlength==1) {$mins="0".$minutes;}
else {$mins=$minutes;} 

$seconds = $init % 60;
$seclength=strlen($seconds);
if ($seclength==1) {$secs="0".$seconds;}
else {$secs=$seconds;} 

echo "$hrs:$mins:$secs";

-3
<?php
$time=3*3600 + 30*60;


$year=floor($time/(365*24*60*60));
$time-=$year*(365*24*60*60);

$month=floor($time/(30*24*60*60));
$time-=$month*(30*24*60*60);

$day=floor($time/(24*60*60));
$time-=$day*(24*60*60);

$hour=floor($time/(60*60));
$time-=$hour*(60*60);

$minute=floor($time/(60));
$time-=$minute*(60);

$second=floor($time);
$time-=$second;
if($year>0){
    echo $year." year, ";
}
if($month>0){
    echo $month." month, ";
}
if($day>0){
    echo $day." day, ";
}
if($hour>0){
    echo $hour." hour, ";
}
if($minute>0){
    echo $minute." minute, ";
}
if($second>0){
    echo $second." second, ";
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.