-3

我现在也使用此代码在我的网站上显示时间:

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

但是使用此代码显示 06:00 而不是 18:00 请帮助我如何更改此代码以编辑此问题。

4

2 回答 2

0

你可以这样使用-

echo date('H:i:s');
于 2013-01-07T14:50:26.180 回答
0

手册

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

H不使用h

于 2013-01-07T14:50:58.560 回答