0
我目前正在嘗試創建一個腳本/函數,該腳本/函數應該爲15天或更早的所有項目(eshop貨物)設置值。根據日期自動編輯行
該腳本將用作cron。
日期以整數形式存儲在數據庫中,但我不完全知道如何處理15天的差距。
請問有人能幫我嗎?
謝謝。
我目前正在嘗試創建一個腳本/函數,該腳本/函數應該爲15天或更早的所有項目(eshop貨物)設置值。根據日期自動編輯行
該腳本將用作cron。
日期以整數形式存儲在數據庫中,但我不完全知道如何處理15天的差距。
請問有人能幫我嗎?
謝謝。
你可以嘗試這樣的事情
$integer_format = strtotime("-15 days");
$dateTime_format = date("Y-m-d h:i:s A T",$integer_format);
echo 'In integer format: '.$integer_format.'</br>'; //1403953190
echo 'In date time format: '.$dateTime_format.'</br>'; //2014-06-28 12:59:50 PM CEST