分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

php限定时间格式化

发布时间:2023-09-06 02:36责任编辑:蔡小小关键词:暂无标签
 ???/** ????* 秒转时间,格式 年 月 日 时 分 秒 ????* ????* @author wangyupeng129@126.com ????* @param int $time ????* @return array|boolean ????*/ ???function Sec2Time($time){ ???????if(is_numeric($time)){ ???????????$value = array( ???????????????"years" => 0, "days" => 0, "hours" => 0, ???????????????"minutes" => 0, "seconds" => 0, ???????????); ???????????if($time >= 31556926){ ???????????????$value["years"] = floor($time/31556926); ???????????????$time = ($time%31556926); ???????????} ???????????if($time >= 86400){ ???????????????$value["days"] = floor($time/86400); ???????????????$time = ($time%86400); ???????????} ???????????if($time >= 3600){ ???????????????$value["hours"] = floor($time/3600); ???????????????$time = ($time%3600); ???????????} ???????????if($time >= 60){ ???????????????$value["minutes"] = floor($time/60); ???????????????$time = ($time%60); ???????????} ???????????$value["seconds"] = floor($time); ???????????return (array) $value; ???????}else{ ???????????return (bool) FALSE; ???????} ???} ???function formatSec2Time($newTime){ ???????$sltime = $this->Sec2Time($newTime); ???????$s = ‘‘; ???????if(!$sltime){ ???????????return $s; ???????} ???????if($sltime[‘years‘]>0){ ???????????$s .= $sltime[‘years‘].‘年‘; ???????} ???????if($sltime[‘days‘]>0){ ???????????$s .= $sltime[‘days‘].‘天‘; ???????} ???????if($sltime[‘hours‘]>0){ ???????????$s .= $sltime[‘hours‘].‘小时‘; ???????} ???????if($sltime[‘minutes‘]>0){ ???????????$s .= $sltime[‘minutes‘].‘分钟‘; ???????} ???????if($sltime[‘seconds‘]>0){ ???????????$s .= $sltime[‘seconds‘].‘秒‘; ???????} ???????return $s; ???}

php限定时间格式化

原文地址:https://www.cnblogs.com/wanghaokun/p/10592183.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved