php 添加时间戳

<?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
原文地址:https://www.cnblogs.com/sea-stream/p/10087140.html