<?php date_default_timezone_set('Asia/Tokyo'); $nowDate = (new DateTime('2024-04-01 00:49:22'))->setTimeZone(new DateTimeZone('Asia/Tokyo')); $endDate = (new DateTime('2024-04-01 08:48:22'))->setTimeZone(new DateTimeZone('UTC')); echo $nowDate->format('Y-m-d H:i:sP') . "\n"; echo $endDate->format('Y-m-d H:i:sP') . "\n"; echo date_diff($nowDate, $endDate)->format('%Y-%M-%D %H:%I:%S');
You have javascript disabled. You will not be able to edit any code.