Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下を使用して、時間を 1 分に丸めています。
$mytime = mdate("H:i:s", $time_in_seconds); $rounded_time = date('H:i:s', round(strtotime($mytime)/60)*60);
出力は、たとえば01:09:00from not rounded01:08:34です。
01:09:00
01:08:34
コードを使用して、日付に変更するのではなく、秒の形式を維持するにはどうすればよいですか?
使用はどうですか
$rounded_time = date('H:i:0');
?