Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
日付が mm/dd/yyyy です これは書式設定の TimePicker です そのままにしておきたいので、テーブルを変更する時が来ました タイムスタンプが機能しません yyyy/mm/dd と交換したいです
$date = date('Y/m/d', strtotime($date_value_from_timepicker));
strtotime を使用して日付を変換する必要があるのは非常に簡単です。以下の例では、$ _POST 変数メソッドを選択しています。
$date = date('Y-m-d H:i:s', strtotime($_POST['old_date']));