PHP date(): minutes without leading zeros

后端 未结 15 1508
粉色の甜心
粉色の甜心 2020-12-13 23:17

I\'d like to know if there is a formatting letter for PHP\'s date() that allows me to print minutes without leading zeros, or whether I have to manuall

15条回答
  •  隐瞒了意图╮
    2020-12-13 23:44

    Doesn't look like it, but you could do something like...

    echo date('g:') . ltrim(date('i'), '0');
    

    Alternately, you could cast the second call to date() with (int).

提交回复
热议问题