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.
現在の時刻に秒を追加する方法がわかりません。これが私の時間を節約するコードです。
$timereg = date("g:i:s A", time());
たとえば、時間は正確に 9:30:00 です。
そのように9:30:02にしたいだけです。
まあ、あなたはすることができます
$timereg = date("g:i:s A", time() + 2);
そして、現在時刻+2秒が表示されると思います。