把它变成丹麦时间 - 它不会像我想要的那样直接运行

时间:2013-10-15 06:02:00

标签: php date

我曾试图在丹麦时间上花时间,但它并不像我喜欢的那样有效。

<?php echo date("d/m/Y - H:s", $online_sidste);?>

我只是希望它看起来像这样:15 / 10-2013 - 08:01

我完成了她的这个:

date("d/m-Y - H:i", strtotime($online_sidste));

2 个答案:

答案 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));