Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

दो डेटाटाइम के बीच अंतर की गणना करें

PHP के बिल्ट इन डेट फ़ंक्शंस का उपयोग करें:

<?php
    $start_time = "Y-m-d H:i:s"; // fill this in with actual time in this format
    $end_time = "Y-m-d H:i:s"; // fill this in with actual time in this format

    // both of the above formats are the same as what MySQL stores its
    // DATETIMEs in

    $start = new DateTime($start_time);
    $interval = $start->diff(new DateTime($end_time));

    echo $interval->format("d \d\a\y\s h \h\o\u\r\s");


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL PHP ज़िप कोड तुलना विशेष रूप से दूरी

  2. WAMP उपेक्षा my.ini

  3. PHP - SQL क्वेरी के आसपास सिंगल कोट्स या डबल कोट्स?

  4. SQL सबसे सामान्य मानों का चयन करें

  5. पीडीओ के लिए ट्राइ-कैच ब्लॉक का उपयोग कैसे करें