当前位置:网站首页>Convert timestamp into milliseconds and format time in PHP
Convert timestamp into milliseconds and format time in PHP
2022-07-02 07:28:00 【Snow wind in the night sky】
Preface
Sometimes you need to operate on the timestamp , Like getting 13 Bit millisecond timestamps or formatted timestamps .
/** * Convert time to millisecond timestamp * @param int|string $time Time stamp | date * @return int */
function get_time($time)
{
if (is_numeric($time)) {
return (int) str_pad($time, 13, "0", STR_PAD_RIGHT);
} else {
return strtotime($time) * 1000;
}
}
/** * Timestamp to date * @param int|string $time Time stamp | date * @param string $format Formatting method * @return string */
function time_format($time, $format = 'Y-m-d')
{
if (is_numeric($time)) {
return date($format, substr($time, 0, 10));
} else {
return $time;
}
}
边栏推荐
- ORACLE EBS中消息队列fnd_msg_pub、fnd_message在PL/SQL中的应用
- 解决万恶的open failed: ENOENT (No such file or directory)/(Operation not permitted)
- Oracle APEX 21.2 installation et déploiement en une seule touche
- Yaml file of ingress controller 0.47.0
- Classloader and parental delegation mechanism
- 【信息检索导论】第六章 词项权重及向量空间模型
- Interpretation of ernie1.0 and ernie2.0 papers
- [introduction to information retrieval] Chapter 1 Boolean retrieval
- MySQL composite index with or without ID
- [paper introduction] r-drop: regulated dropout for neural networks
猜你喜欢
SSM supermarket order management system
【BERT,GPT+KG调研】Pretrain model融合knowledge的论文集锦
传统目标检测笔记1__ Viola Jones
[tricks] whiteningbert: an easy unsupervised sentence embedding approach
Agile development of software development pattern (scrum)
【信息检索导论】第三章 容错式检索
【Ranking】Pre-trained Language Model based Ranking in Baidu Search
第一个快应用(quickapp)demo
ORACLE 11G利用 ORDS+pljson来实现json_table 效果
Tencent machine test questions
随机推荐
ssm垃圾分类管理系统
TCP attack
ORACLE EBS 和 APEX 集成登录及原理分析
Oracle 11g uses ords+pljson to implement JSON_ Table effect
Use matlab to realize: chord cut method, dichotomy, CG method, find zero point and solve equation
CRP implementation methodology
Open failed: enoent (no such file or directory) / (operation not permitted)
SSM second hand trading website
Agile development of software development pattern (scrum)
SSM personnel management system
Pratique et réflexion sur l'entrepôt de données hors ligne et le développement Bi
离线数仓和bi开发的实践和思考
A slide with two tables will help you quickly understand the target detection
Message queue fnd in Oracle EBS_ msg_ pub、fnd_ Application of message in pl/sql
ORACLE EBS ADI 开发步骤
How to efficiently develop a wechat applet
Implement interface Iterable & lt; T>
【信息检索导论】第二章 词项词典与倒排记录表
allennlp 中的TypeError: Object of type Tensor is not JSON serializable错误
【MEDICAL】Attend to Medical Ontologies: Content Selection for Clinical Abstractive Summarization