5

我有以下代码来确定明天午夜的 unix 时间戳。对我来说这似乎很老套,我想知道是否有人有更优雅的解决方案。

date("U", strtotime(date("Y-m-d 00:00:00", strtotime("tomorrow"))));
4

1 回答 1

12

这应该足够了:

<?php
$t = strtotime('tomorrow');

您还可以设置时间:

<?php
$t = strtotime('tomorrow 14:55');

请注意,与 PHP 中的其他日期功能一样,除非另有要求,否则它将使用默认时区

date_default_timezone_set('Asia/Tokyo');
$t = strtotime('tomorrow');
var_dump($t, date('r', $t));

date_default_timezone_set('Europe/Madrid');
$t = strtotime('tomorrow');
var_dump($t, date('r', $t));

date_default_timezone_set('Europe/Madrid');
// Generate midnight in New York, display equivalent Madrid time
$t = strtotime('tomorrow America/New_York');
var_dump($t, date('r', $t));
int(1502204400)
string(31) "Wed, 09 Aug 2017 00:00:00 +0900"
int(1502229600)
string(31) "Wed, 09 Aug 2017 00:00:00 +0200"
int(1502251200)
string(31) "Wed, 09 Aug 2017 06:00:00 +0200"
于 2010-03-10T16:53:54.593 回答