Home  >  Article  >  Backend Development  >  How to get the specific date of Monday this week in php_PHP tutorial

How to get the specific date of Monday this week in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:56:40872browse

How to get the specific date of Monday this week in php

This article mainly introduces the method of getting the specific date of Monday this week in php, involving the operation skills of php for dates. It is of great practical value. Interested friends can integrate this code snippet into their own date class to facilitate future calls. Friends in need can refer to it

The example in this article describes how to get the specific date of Monday this week in php. Share it with everyone for your reference. The details are as follows:

 ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

private function mondayTime($timestamp=0,$is_return_timestamp=true){

static $cache ;

$id = $timestamp.$is_return_timestamp;

if(!isset($cache[$id])){

if(!$timestamp) $timestamp = time();

$monday_date = date('Y-m-d',$timestamp-86400*date('w',$timestamp) (date('w',$timestamp)>0?86400:-/*6*86400*/518400));

if($is_return_timestamp){

$cache[$id] = strtotime($monday_date);

}else{

$cache[$id] = $monday_date;

}

}

return $cache[$id];

}

echo $this->mondayTime(time() 24*3600*2,false);

exit;

1

2 3

45 6 7 8 9 10
11
12
13 14 15 16
private function mondayTime($timestamp=0,$is_return_timestamp=true){ static $cache ; $id = $timestamp.$is_return_timestamp; if(!isset($cache[$id])){ if(!$timestamp) $timestamp = time(); $monday_date = date('Y-m-d',$timestamp-86400*date('w',$timestamp) (date('w',$timestamp)>0?86400:-/*6*86400 */518400)); if($is_return_timestamp){ $cache[$id] = strtotime($monday_date); }else{ $cache[$id] = $monday_date; } } return $cache[$id]; } echo $this->mondayTime(time() 24*3600*2,false); exit;
I hope this article will be helpful to everyone’s PHP programming design. http://www.bkjia.com/PHPjc/987104.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/987104.htmlTechArticleHow to get the specific date of Monday this week in php. This article mainly introduces how to get the specific date of Monday this week in php. The method involves PHP's date operation skills, which is of great practical value...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn