由於某些原因,我無法獲得strtotime('+ 1個月)的工作權限。這是我的代碼;向Unix時間戳添加1個月的問題
$Date = $_REQUEST['date']; //This is a unix time stamp
$Start = $_REQUEST['start']; //This is a unix time stamp
$End = $_REQUEST['end']; //This is a unix time stamp
將一個月添加到我的日期;
$monStart =strtotime('+1 month', $Start);
$monEnd =strtotime('+1 month', $End);
$monDate =strtotime('+1 month', $Date);
然後顯示我的更改日期;
$vEnd = date('m/d/Y', $monEnd);
$vStart = date('m/d/Y', $monStart);
$vDate = date('m/d/Y', $monDate);
我的問題是提供的日期;
$Date = 1/31/2013
$Start = 1/01/2013
$End = 1/31/2013
返回;
$vDate = 3/03/2013
$vStart = 2/01/2013 //Only correct one
$vEnd = 3/03/2013
請問有人可以幫我嗎?
是什麼預期值? – Otaia
$ vDate = 2/28/2013,$ VStart是正確的,$ vEnd = 2/28/2013 – ipfreelly
@ipfreelly有什麼問題。你想要什麼輸出 – Sabari