Level 104
\Carbon\Carbon::parse('2021-10-08 10:30:00 PM')->toDateTimeString();
or if you don't want Carbon:
date('Y-m-d H:i:s', strtotime('2021-10-08 10:30:00 PM'))
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have a string "2021-10-08 10:30:00 PM" , its format is "Y-m-d h:i:s A", so it means that it is 10:30 at night time, is there any way to convert it to" 2021-10-08 22:30:00"?
\Carbon\Carbon::parse('2021-10-08 10:30:00 PM')->toDateTimeString();
or if you don't want Carbon:
date('Y-m-d H:i:s', strtotime('2021-10-08 10:30:00 PM'))
Please or to participate in this conversation.