PHP time format, am and pm with periods

前端 未结 4 1414
粉色の甜心
粉色の甜心 2021-01-07 08:15

How could I adjust the php time format to a.m and p.m with the periods included?

date(\'h:i a\');
4条回答
  •  庸人自扰
    2021-01-07 08:50

    You do it easy with str_replace:

    str_replace(array('am','pm'),array('a.m','p.m'),date('h:i a'));
    

    Hope this helps

提交回复
热议问题