<?php $tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y")); echo "Tomorrow is ".date("Y/m/d", $tomorrow); ?>
输出
Tomorrow is 2009/05/12
php 添加时间戳
原文:https://www.cnblogs.com/sea-stream/p/10087140.html