sql >> データベース >  >> RDS >> Mysql

2つの(日付と時刻)PHPの差を返す

    Try this
    function getTimes($t1, $t2)
    {
    $timeFirst  = strtotime($t1);
    $timeSecond = strtotime($t2);
    $differenceInSeconds = $timeSecond - $timeFirst;
    $h=0;
    $m  = floor($differenceInSeconds / 60);
    $s  = $differenceInSeconds % 60;
    if ($m>=60)
    {
      $h = floor($m / 60);
      $m = $m % 60;
    }
    $tim = $h.':'.$m.':'.$s;
    return $tim;
    }
    it will return difference time in hours:min:sec
    


    1. MySQL:インデックスなしのUNIQUE制約

    2. 複数の自己結合を使用した大きなテーブルでの空間クエリの実行速度が遅い

    3. テーブル式の基礎、パート9 –ビュー、派生テーブルおよびCTEとの比較

    4. PHPのPostgresqlでホワイトリストとプリペアドステートメントを使用するにはどうすればよいですか?