>백엔드 개발 >PHP 튜토리얼 >php date('W')是否可逆

php date('W')是否可逆

WBOY
WBOY원래의
2016-06-06 20:50:29952검색

求一个

$week = date('W');

function($year,$week) return 星期一的时间;

同时求解

date("W",strtotime('2011-1-1')) 为何 不是 1

date("W",strtotime('2013-1-1')) 为何是 1

回复内容:

求一个

$week = date('W');

function($year,$week) return 星期一的时间;

同时求解

date("W",strtotime('2011-1-1')) 为何 不是 1

date("W",strtotime('2013-1-1')) 为何是 1

W是显示第几周,从星期一开始的说。2011年1月1号是礼拜六,不算是第1周的说,2013年1月1号是礼拜二,当然是第1周啦~
php date('W')是否可逆

另外,你想要返回某一周的礼拜一直接用

<?php $year = 2013;
$week = '02';
echo strtotime($year.'-W'.$week.'-1');
?>

就可以了,具体可以看看strtotime,官方手册上有详细说明

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.