沃梦达 / 编程问答 / php问题 / 正文

在 PHP 中获取小时和分钟

Getting Hour and Minute in PHP(在 PHP 中获取小时和分钟)

本文介绍了在 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.

这篇关于在 PHP 中获取小时和分钟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:在 PHP 中获取小时和分钟

基础教程推荐