This question already has an answer here:
- Convert the time format in php 2 answers
Can I print a current time in this format? (00:00:00:)
echo date("H:i:s","00:00:00");
output: 01:00:00
I want output: 00:00:00
</div>
This question already has an answer here:
Can I print a current time in this format? (00:00:00:)
echo date("H:i:s","00:00:00");
output: 01:00:00
I want output: 00:00:00
</div>
Yes you can with strtotime()
:
echo date("H:i:s",strtotime("00:00:00"));