美文网首页
php 秒转时分秒

php 秒转时分秒

作者: 上帝2017 | 来源:发表于2018-07-04 15:44 被阅读0次
     function secToTime($times){
                $time = gmstrftime('%H时%M分%S秒',1);
                $time = preg_replace("/00时|00分/", "",$time);
    
                $time = preg_replace_callback("/(\d{1,})/",
                    function($matches) {
                        return intval($matches[0]);
                    },$time);
                return $time;
            }
    

    相关文章

      网友评论

          本文标题:php 秒转时分秒

          本文链接:https://www.haomeiwen.com/subject/khgeuftx.html