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

WBOY
Release: 2016-07-13 09:56:33
Original
1269 people have browsed it

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

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

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;
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/987252.htmlTechArticleHow to get the specific date of Monday this week in php, get Monday this week in php. This article tells the example of getting this week in php Method of specifying the specific date of Monday every week. Share it with everyone for your reference. Specifically...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template