在 PHP 中获取小时和分钟

我需要以小时:分钟格式获取当前时间,任何人都可以帮助我.

I need to get the current time, in Hour:Min format can any one help me in this.

推荐答案

print date('H:i');
$var = date('H:i');

应该这样做,就目前而言.使用小写 h 表示 12 小时制而不是 24 小时制.

Should do it, for the current time. Use a lower case h for 12 hour clock instead of 24 hour.

在此处列出了更多日期时间格式.

More date time formats listed here.

相关文章