我正在使用Laravel Framework 6.16.0并從字符串創(chuàng)建日期對象,以便我可以將其輸入到我的數(shù)據(jù)庫中:$transaction_date = Carbon::createFromFormat('Y-m-d', $tradeDate);$filling_Date = Carbon::createFromFormat('Y-m-d H:i:s', $fillingDate, 'UTC');$product = Product::updateOrCreate( [ 'price' => trim($price), 'qty' => $qty, 'companies_id' => $company->id, 'persons_id' => $person->id, 'amount_range' => $owned, 'filling_date' => $filling_Date, 'transaction_date' => $transaction_date, ], []);運(yùn)行上述查詢時,即使我的產(chǎn)品已經(jīng)存在,我的產(chǎn)品也不會在數(shù)據(jù)庫中被發(fā)現(xiàn)$filling_Date且不匹配。$transaction_date我猜測,原因是我正在創(chuàng)建一個“新”Carbon 對象。有什么建議如何在數(shù)據(jù)庫中匹配filling_date和嗎?transaction_date我很感謝你的回復(fù)!
1 回答

慕村225694
TA貢獻(xiàn)1880條經(jīng)驗 獲得超4個贊
使用 Carbon 將字符串轉(zhuǎn)換為日期時嘗試此操作
$date = Carbon::parse($yourStringDate);
- 1 回答
- 0 關(guān)注
- 105 瀏覽
添加回答
舉報
0/150
提交
取消