在 PHP 中获取小时和分钟
我需要获取当前时间,格式为“小时:分钟”,任何人都可以帮助我。
I need to get the current time, in Hour:Min format can any one help me in this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要获取当前时间,格式为“小时:分钟”,任何人都可以帮助我。
I need to get the current time, in Hour:Min format can any one help me in this.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(8)
您必须在 php.ini 中设置正确的时区。
查找这些行:
类似于:
不要忘记重新启动您的网络服务器。
You have to set the correct timezone in
php.ini
.Look for these lines:
It will be something like :
Don't forget to restart your webserver.
如果要将整个脚本的默认时区设置为特定时区,解决时区问题的另一种方法是使用
date_default_timezone_set()
然后使用支持的时区之一。Another way to address the timezone issue if you want to set the default timezone for the entire script to a certian timezone is to use
date_default_timezone_set()
then use one of the supported timezones.您可以使用以下解决方案来解决您的问题:
You can use the following solution to solve your problem:
在解决您需要当前时间而不是系统时间的评论时,您必须自己进行调整,
一小时有 3600 秒(单位时间戳使用),所以使用它。例如,如果您的系统时间晚了一小时:
$time = date('H:i',time() + 3600);
In addressing your comment that you need your current time, and not the system time, you will have to make an adjustment yourself,
there are 3600 seconds in an hour (the unit timestamps use), so use that. for example, if your system time was one hour behind:
$time = date('H:i',time() + 3600);
目前应该这样做。使用小写
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.
试试这个:
这将是 24 小时制时间,其中小时始终为两位数。有关所有选项,请参阅 date() 的 PHP 文档。
Try this:
This will be 24-hour time with an hour that is always two digits. For all options, see the PHP docs for date().