Write a PHP script to convert seconds into days, hours, minutes and seconds

  • برمجة بي اتش بي

Write a PHP script to convert seconds into days, hours, minutes and seconds.

Sample seconds : 200000

الأجوبة

<?php
function convert_seconds($seconds) 
 {
  $dt1 = new DateTime("@0");
  $dt2 = new DateTime("@$seconds");
  return $dt1->diff($dt2)->format('%a days, %h hours, %i minutes and %s seconds');
  }
echo convert_seconds(200000)."\n";
?>

Sample Output:

2 days, 7 hours, 33 minutes and 20 seconds
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...