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

如何将 Unix 时间戳转换为 hhmmss?

How to convert Unix timestamp to hhmmss?(如何将 Unix 时间戳转换为 hhmmss?)

本文介绍了如何将 Unix 时间戳转换为 hhmmss?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将 Unix 时间戳(即 1286374738)转换为 hhmmss?

How to convert Unix timestamp (ie. 1286374738) to hhmmss?

推荐答案

date('His', $timestamp);

其中 $timestamp 包含 unix 时间戳,H = 24 小时制带前导零的小时格式,可以使用 h = 12 小时制带前导零的小时制;i = 分钟,带前导零,s = 秒,带前导零

where $timestamp contains the unix timestamp , H = 24-hour format of an hour with leading zeros , can use h = 12-hour format of an hour with leading zeros ; i = Minutes with leading zeros , s = Seconds, with leading zeros

这篇关于如何将 Unix 时间戳转换为 hhmmss?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何将 Unix 时间戳转换为 hhmmss?

基础教程推荐