- week2range
- test set
- 2007-W01 → (2007-01-01, 2007-01-07)
- 2009-W01 → (2008-12-29, 2009-01-04)
1 PHP[ | ]
PHP
Copy
function week2range($week) {
return array( date('Y-m-d', strtotime("$week-1")),
date('Y-m-d', strtotime("$week-7")));
}
print_r( week2range('2009-W01') );
// Array
// (
// [0] => 2008-12-29
// [1] => 2009-01-04
// )
2 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
- 분류 댓글:
- PHP (8)
PHP 파일 다운로드 구현 2 (한글 파일명 지원) ― …PHP에서 오라클 DB 사용 ― YoWuPHP 파일 업로드 구현 ― 일리단사오육칠PHP 파일 업로드 구현 ― JmnotePHP 파일 다운로드 구현 2 (한글 파일명 지원) ― AnmkstLib my.php ― 신정섭Lib my.php ― Jmnote로또번호 생성 ―Pinkcrimson