與此類似question,但沒有回答我的具體問題。傳遞的strtotime()函數中的變量PHP
當前日期是2011-12-14,對於在參考的情況下這個問題在將來觀看。
我嘗試這樣做:
$maxAge = $row['maxAge']; // for example, $row['maxAge'] == 30
$cutoff = date('Y-m-d', strtotime('-$maxAge days'));
而且它$cutoff: 1969-12-31
返回下面的價值,我想這:
$maxAge = $row['maxAge']; // for example, $row['maxAge'] == 30
$cutoff = date('Y-m-d', strtotime('-' . $maxAge . ' days'));
它返回$cutoff: 2011-03-14
如何傳遞這個變量成功LY到strtotime()
功能,使得它計算的天量,以正確的減?
例如,如果$maxAge == 30
和當前日期爲2011-12-14,那麼$cutoff
應該2011-11-14
我現在就愛你 – 2017-06-01 20:43:09