php时间调用有关问题

WBOY
풀어 주다: 2016-06-13 13:31:39
원래의
905명이 탐색했습니다.

php时间调用问题
对php编程一点不懂,请教:
想实现,*分钟前(*小时前...),不知道怎么编,在网上找到一段代码,很好用,也很简单:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php function format_time($time){   
    $t=time()-$time;   
    $f=array(   
        '31536000'=>'年',   
        '2592000'=>'个月',   
        '604800'=>'星期',   
        '86400'=>'天',   
        '3600'=>'小时',   
        '60'=>'分钟',   
        '1'=>'秒'  
    );   
  
    foreach ($f as $k=>$v)   
    {           
        if (0 != $c=floor($t/(int)$k))   
        {   
            return $c.$v.'前';   
        }   
    }   
}   
echo format_time('1336880454');   
?>

로그인 후 복사


但是这里时间需要转换为Unix时间戳,也找到一段代码:
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php $time1 = "2012-05-13 11:40:54";
$time2 = strtotime($time1);
echo $time2;//转换成时间戳格式
echo date('',$time2);//转换成标准日期格式
?>

로그인 후 복사


现在页面的代码是这样的:
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php while ($row = mysql_fetch_array($rs_tmmsm)) {?>
=date("Y-m-d <!--h:i-->",strtotime($row["pay_time"]))?>
<?php }?>

로그인 후 복사


问题:想把上面三个代码整合在一起,实现我需要的,*分钟前(*小时前...),该如何搞?

------解决方案--------------------
PHP code
<?php function format_time($time){   
    $t=time()-$time;   
    $f=array(   
        '31536000'=>'年',   
        '2592000'=>'个月',   
        '604800'=>'星期',   
        '86400'=>'天',   
        '3600'=>'小时',   
        '60'=>'分钟',   
        '1'=>'秒'  
    );   
  
    foreach ($f as $k=>$v)   
    {           
        if (0 != $c=floor($t/(int)$k))   
        {   
            return $c.$v.'前';   
        }   
    }   
}  
while ($row = mysql_fetch_array($rs_tmmsm)) {
    echo format_time(strtotime($row["pay_time"]));
}
?> <div class="clear">
                 
              
              
        
            </div>
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!