|
|
|
รบกวนสอบถามหน่อยครับ เกี่ยวกับการแปลงเวลาให้เป็น วัน ชั่วโมง นาที |
|
|
|
|
|
|
|
Code (PHP)
function sectotime($seconds) {
$dtF = new \DateTime('@0');
$dtT = new \DateTime("@$seconds");
$ret = '';
if ($seconds === 0) {
return '0 วินาที';
}
$diff = $dtF->diff($dtT);
foreach (array(
'y' => 'ปี',
'm' => 'เดือน',
'd' => 'วัน',
'h' => 'ชั่วโมง',
'i' => 'นาที',
's' => 'วินาที',
) as $time => $timename) {
if ($diff->$time !== 0) {
$ret .= $diff->$time . ' ' . $timename;
$ret .= ' ';
}
}
return substr($ret, 0, -1);
}
echo sectotime(39968);
ลองใช้ฟังก์ชั่นนี้ดูครับ
|
|
|
|
|
Date :
2016-11-27 20:51:36 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|