|
|
|
ช่วยดูโค้ด Countdown เวลาและการแปลงจากนาทีเป็น ชั่วโมง นาที วินาที ที่ดึงจากฐานข้อมูลทีครับ |
|
|
|
|
|
|
|
Code (PHP)
<?php
function convertToHoursMins($time, $format = '%d:%d') {
settype($time, 'integer');
if ($time < 1) {
return;
}
$hours = floor($time / 60);
$minutes = ($time % 60);
return sprintf($format, $hours, $minutes);
}
echo convertToHoursMins(250, '%02d hours %02d minutes'); // should output 4 hours 17 minutes
เรียกใช้ได้ไม่ยาก
|
|
|
|
|
Date :
2015-06-04 10:11:52 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|