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.
我正在寻找 PHP 中的以下解决方案。
每当用户单击页面时,我想将他们单击的时间以 12 小时 AM/PM 格式存储为半小时间隔。
例如,用户点击:上午 7:23 将存储为上午 7:00-7:30,下午 9:44 将存储为下午 9:30-10:00 等
var_dump( date('H:i') ); $prev = time() - (time() % 1800); $next = $prev + 1800; var_dump( date('H:i A', $prev), date('H:i A', $next) );
如此处所示:如何将 unix 时间戳向上和向下舍入到最接近的半小时?