标签: php datetime
我可以用这种格式打印当前时间吗? (00:00:00:)
.dygraph-legend span:nth-child(2) { display: none; }
输出:01:00
我想要输出:00:00:00
答案 0 :(得分:2)
是的,您可以使用strtotime():
strtotime()
echo date("H:i:s",strtotime("00:00:00"));