I have the following code to determine the unix timestamp of midnight tomorrow. It seems pretty hacky to me and I wondered if anyone had a more elegant solution.

date("U", strtotime(date("Y-m-d 00:00:00", strtotime("tomorrow"))));
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

This should be enough:

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

You can also set a time:

<?php
$t = strtotime('tomorrow 14:55');
?>
link|improve this answer
2  
strtotime("midnight tomorrow") also seems to work :) – Ben James Mar 10 '10 at 16:55
@Ben James: Nice to know. I've Googled lots of times for the exact specs but there don't seem to be any apart from an incomplete man page and the original C code... – Álvaro G. Vicario Mar 10 '10 at 16:58
Well don't I feel like a goof. Thanks for the quick reply. – Ben Mcmath Mar 10 '10 at 16:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.