Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图把时间安排在丹麦时间,但它并没有像我想要的那样工作。
<?php echo date("d/m/Y - H:s", $online_sidste);?>
我只是希望它看起来像这样:15/10-2013 - 08:01
我已经完成了她:
date("d/m-Y - H:i", strtotime($online_sidste));
只是格式化它
$today = date("d/m-Y - H:s"); echo $today;
echo date_create($online_sidste)->format('d/m-Y - H:i');
或者