PHP:如何确定明天午夜的Unix时间戳?

时间:2010-03-10 16:49:30

标签: php unix-timestamp

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

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

1 个答案:

答案 0 :(得分:11)

这应该足够了:

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

您还可以设置时间:

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

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

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"