在PHP中,经常要对日期进行计算,比如要计算一个月前的日期,那么其实最快的方法是用strtotime,其功能很丰富,如下:echostrtotime("now"),"\n";echostrtotime("10September2000"),"\n";echostrtotime("+1day"),"\n";echostrtotime("+1week"),"\n";echostrtotime("+1week2days4hours2seconds"),"\n";echostrtotime...
查看全文