我曾试图在丹麦时间上花时间,但它并不像我喜欢的那样有效。
<?php echo date("d/m/Y - H:s", $online_sidste);?>
我只是希望它看起来像这样:15 / 10-2013 - 08:01
我完成了她的这个:
date("d/m-Y - H:i", strtotime($online_sidste));
答案 0 :(得分:1)
只需格式化
$today = date("d/m-Y - H:s");
echo $today;
答案 1 :(得分:0)
echo date_create($online_sidste)->format('d/m-Y - H:i');
或
date("d/m-Y - H:i", strtotime($online_sidste));