2016-06-15 13 views
0

PHPで2つのDateTimeオブジェクトの違いを調べようとしていて、答えが間違っているようです。あなたが見ることができるように、diff()関数は4時間41分の時間差を与えますが、時間差は明らかに7時間に非常に近いです。PHP datetime diff wrong

$eastern_tz = new DateTimeZone("US/Eastern"); 

$now   = new DateTime("now", $eastern_tz); 
$future_date = new DateTime($future_date_string); //'2011-05-11 12:00:00' 

$future_date->setTimezone($eastern_tz); 

$interval = $future_date->diff($now); 

var_dump($now); 
var_dump($future_date); 
var_dump($interval); 

return $interval->format($format); //"%d days, %h hours, %i minutes, %s seconds" 

//デバッグ情報

object(DateTime)[483] 
    public 'date' => string '2016-06-15 09:18:41' (length=19) 
    public 'timezone_type' => int 3 
    public 'timezone' => string 'US/Eastern' (length=10) 
object(DateTime)[484] 
    public 'date' => string '2016-06-15 14:00:00' (length=19) 
    public 'timezone_type' => int 3 
    public 'timezone' => string 'US/Eastern' (length=10) 
object(DateInterval)[479] 
    public 'y' => int 0 
    public 'm' => int 0 
    public 'd' => int 0 
    public 'h' => int 4 
    public 'i' => int 41 
    public 's' => int 19 
    public 'weekday' => int 0 
    public 'weekday_behavior' => int 0 
    public 'first_last_day_of' => int 0 
    public 'invert' => int 1 
    public 'days' => int 0 
    public 'special_type' => int 0 
    public 'special_amount' => int 0 
    public 'have_weekday_relative' => int 0 
    public 'have_special_relative' => int 0 
+0

まあ、あなたのDEBUG情報は$ future_dateの値があなたが挿入すると主張している値ではないことを示しています。 $ future_date_stringで提供している値が正しいと確信していますか? – Tularis

+0

デバッグ情報に表示される値に従って、答えは正しいです! –

答えて

1

...それはあなたのために働くことを願っていますか?

$future_date->setTimezone($eastern_tz);は、日付をレンダリングする場合、または新しい文字列をインポートする場合にのみ必要です。構文解析には遅すぎる$future_date_stringです。

0

それはあなたのために動作します私のコードを使用します。デフォルトのPHPのタイムゾーンである$future_date = new DateTime($future_date_string);を作成すると

$fromTimes = date('d-m-Y',strtotime('15-06-2016 06:57:27')); //from date and time 
$toTimess = date('d-m-Y',strtotime('17-06-2016 10:25:30')); //to date and time 
$date_a = new DateTime($toTimess); //converting the date and time 
$date_b = new DateTime($fromTimes); 
$interval = date_diff($date_a,$date_b); //find difference 
$day = $interval->format('%d')*24; //get day difference 
$hours = $interval->format('%h'); // get hour 
$mins = $interval->format('%i'); //get mins 
if($mins <10) 
{ $mins = '0'.$mins; } 
echo $total_hours = ($hours + $day).':'.$mins;