How to produce this kind of date string in PHP ? this sample date string below is coming from a postgresql output
2020-10-20 14:44:37.060966+08
I already tried something like
date('Y-m-d H:i:sO',strtotime('now'));
and
date('Y-m-d H:i:sOT',strtotime('now'));
but still i cannot produce the part starting from the decimal point to the end of my sample string.. so how to generate that format with decimal and + something something right after the seconds in PHP ?