我的网站显示的时间是06:00而不是18:00


my website date show me time 06:00 instead of 18:00

我使用这个代码来显示现在的时间在我的网站:

<?php date_default_timezone_set('Asia/Tehran'); echo date('h:i:s'); ?>

但是用这个代码显示06:00而不是18:00

请告诉我如何修改这个代码来编辑这个问题。

从手册:

h   12-hour format of an hour with leading zeros
H   24-hour format of an hour with leading zeros    

使用H而不是h

你可以这样使用-

echo date('H:i:s');