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.
データ型の列が1つdatetimeあり、このフィールドを小枝で次のように分割したい
datetime
Enter date <textbox to take date in format=YYYY:M:d> Enter time <select box for time (format=HH:MM:SS)>
テーブルが持っているのと同じ形式でテーブルに挿入したい
例えば:2013-02-14 12:02:32
2013-02-14 12:02:32
日付と時刻のウィジェットを追加しましたが、うまくいきました
$builder->add('startDate','datetime',array( 'date_widget'=>'single_text', 'date_format'=>'d-M-y', 'time_widget' => 'choice' ))
そして、これが私が期待していたことを達成する方法だと思います。