我对Moment.js库有问题。当我尝试格式化日期时,会增加分钟数。
我尝试使用.utc函数,但它还会增加4分钟。
utcOffset(4)相同。
<?php $brands = get_the_tags(); ?>
<p class="brand-tags"><?php
$count = 0;
foreach ($brands as $brand) {
// echo sizeof($brands);
if ($count < sizeof($brands)-1) {
echo '<a href="add_link_here">'.$brand->name.' </a> ';
$count += 1;
} else {
echo '<a href="add_link_here">'.$brand->name.' </a> ';
}
} ?></p>
我希望上面的代码输出13:00
答案 0 :(得分:2)
使用
moment('2019-04-06 13:00:00').format('HH:mm')
将MM更改为mm
更多单位的结帐文档:
答案 1 :(得分:0)
尝试一下('2019-04-06 13:00:00')。format('HH:mm')
答案 2 :(得分:0)
将其更改为详细信息moment:
moment('2019-04-06 13:00:00').format('HH:mm')
"13:00"