2012-02-21 20 views
9

マイクロ秒を減算し、日付をミリ秒単位でPHPで表示するには?例えばマイクロ秒を減算し、日付をミリ秒単位でPHPで表示する方法は?

:私は、終了日時

$endtime = 2012-02-21 10:29:59; 

を設定した後、私は今、私は引くしたい現在の日付を持っているかのmicrotime

$starttime = 2012-02-21 10:27:59.452; 

function getTimestamp() 
{ 
     $microtime = floatval(substr((string)microtime(), 1, 8)); 
     $rounded = round($microtime, 3); 
     return date("Y-m-d H:i:s") . substr((string)$rounded, 1, strlen($rounded)); 
} 

echo getTimestamp(); //sample output 2012-02-21 10:27:59.452 

から変換して日付を起動します。 $ finaldate = $ endtime - $ starttime; 00:00:02.452

答えて

16

あなたは、開始/終了値のmicrotimeを使用する必要がある、とだけ最後に表示のためにそれをフォーマット

は、私は私の出力は次のようになりたいです。

// Get the start time in microseconds, as a float value 
$starttime = microtime(true); 

/************/ 
/* Do stuff */ 
/************/ 

// Get the difference between start and end in microseconds, as a float value 
$diff = microtime(true) - $starttime; 

// Break the difference into seconds and microseconds 
$sec = intval($diff); 
$micro = $diff - $sec; 

// Format the result as you want it 
// $final will contain something like "00:00:02.452" 
$final = strftime('%T', mktime(0, 0, $sec)) . str_replace('0.', '.', sprintf('%.3f', $micro)); 

注:これはmicrotimeからfloat値を返すと数学を簡素化するためにフロート演算を使用しているので、あなたの数字は非常に少しオフに起因する問題を丸めフロートにかもしれないが、あなたは3桁に結果を丸めていますとにかく最後にはプロセッサのタイミングの微妙な変動が浮動小数点エラーよりも大きいので、これは複数のレベルで問題ではありません。

3

よくphpmyadminはこのようなコードを使用して、クエリに要した時間を計算します。あなたの要件に似ています:

//time before 
list($usec, $sec) = explode(' ',microtime($starttime)); 
$querytime_before = ((float)$usec + (float)$sec); 
/* your code */ 

//time after 
list($usec, $sec) = explode(' ',microtime($endtime)); 
$querytime_after = ((float)$usec + (float)$sec); 
$querytime = $querytime_after - $querytime_before; 

私はこれはあなたのために働くべきだと思います。あなたはあなたの出力フォーマットを把握するだけです