如何從JSON
獲取PHP日期時間?JSON數組到PHP日期時間
$params = array();
$content = json_decode($request->getContent(), true);
if(empty($content))
{
throw $this->createNotFoundException('JSON not send!')
}
$content['date']
需要被smomething像$date = new DateTime();
JSON的樣子:
{
"date" : "2017-02-15 15:20:14"
}
日期是通過你的JSON代碼? – Sona
對不起,我忘了。 JSON看起來像:{「date」:「2017-02-15 15:20:14」} –
即將到來,然後直接你會訪問是什麼問題? – Sona