php中时间日期转换
本文章介绍了一篇php中时间日期转换自定函数,它可以实现将秒数表示的事件转换为年、月、日、小时等时间格式。
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; } }查看更多关于php中时间日期转换 - php函数的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did30694