php 今天 昨天 明天 时间戳

2013年9月10日 16:26:25

echo strtotime('now'),'<br>';

echo strtotime('today'),'<br>';

echo strtotime('tomorrow'),'<br>';

echo strtotime('yesterday'),'<br>';

--------------------------------------

今天剩余的秒数:

$time_remain = strtotime('tomorrow') - time();

 

你可能感兴趣的:(PHP)