我正在尝试使用新值更新时间戳的时间(小时和分钟),但由于某些原因它返回 -19 小时,这是为什么呢?我做错了吗?
$hour_created = $_REQUEST['hour_created']; // ex.: 13
$minute_created = $_REQUEST['minute_created']; // ex.: 00
$updated_timestamp = strtotime("$hour_created:$minute_created", $_REQUEST['_timestamp']);