PHP에서 타임스탬프를 일수로 변환하는 방법: 먼저 PHP 샘플 파일을 만든 다음 "(time()-$v['createtime'])/86400;"을 통해 타임스탬프를 일수로 변환합니다.
이 문서의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
php 타임스탬프는 일 단위로 변환되어 정수로 반올림됩니다.
public function edit() { global $_W; global $_GPC; $openid=$_W['openid']; $boards = pdo_fetchall('select b.id,b.logo,b.title,f.createtime from ' . tablename('ewei_shop_sns_board_follow') . ' f ' . ' left join ' . tablename('ewei_shop_sns_board') . ' b on f.bid = b.id ' . ' where f.uniacid=:uniacid and f.openid=:openid ', array(':uniacid' => $_W['uniacid'], ':openid' => $openid)); $boards = set_medias($boards, 'logo'); include $this->template(); } //html 代码 <div class="mtvc mm"> {loop $boards $k $v} <div> <img class="mui-media-object mui-pull-left" src="{$v['logo']}"> <div class="mui-media-body"> {$v['title']} <p class='mui-ellipsis'>已坚持<span> <?php $times= (time()-$v['createtime'])/86400; // echo $times."<br>"; if( $times<1){ echo "1"; }else{ echo round("$times"); } ?> </span>天</p> <img class="mui-media-object mui-pull-right imgdel" src="../addons/ewei_shopv2/plugin/sns/static/images/btndel.png" onClick="delItem(this, id)"/></br> </div> </div> {/loop} </div>
핵심 포인트
{$v['title']} =<?php echo $v['title']; ?>
round() 함수 반대 부동소수점은 반올림됩니다.
Example
<?php echo(round(0.60)); echo(round(0.50)); echo(round(0.49)); echo(round(-4.40)); echo(round(-4.60)); ?>
출력:
1 1 0 -4 -5
[권장 학습: PHP 비디오 튜토리얼]
위 내용은 PHP의 타임스탬프를 일 단위로 변환하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!