php获取指定日期之间的各个周和月的起止时间,php日期
根据指定的前后两个日期,计算这两个日期之间各个周的起始时间和结束时间,以及各个月的起始时间和结束时间
日志格式化类 Date.class.php
复制代码 代码如下:
class Datefmt{
function __construct() {}
/**
* 根据指定日期获取所在周的起始时间和结束时间
*/
public function get_weekinfo_by_date($date) {
$idx = strftime("%u", strtotime($date));
$mon_idx = $idx - 1;
$sun_idx = $idx - 7;
return array(
'week_start_day' => strftime('%Y-%m-%d', strtotime($date) - $mon_idx * 86400),
'week_end_day' => strftime('%Y-%m-%d', strtotime($date) - $sun_idx * 86400),
);
}
/**
* 根据指定日期获取所在月的起始时间和结束时间
*/
public function get_monthinfo_by_date($date){
$ret = array();
$timestamp = strtotime($date);
$mdays = date('t', $timestamp);
return array(
'month_start_day' => date('Y-m-1', $timestamp),
'month_end_day' => date('Y-m-'.$mdays, $timestamp)
);
}
/**
* 获取指定日期之间的各个周
*/
public function get_weeks($sdate, $edate) {
$range_arr = array();
// 检查日期有效性
$this->check_date(array($sdate, $edate));
// 计算各个周的起始时间
do {
$weekinfo = $this->get_weekinfo_by_date($sdate);
$end_day = $weekinfo['week_end_day'];
$start = $this->substr_date($weekinfo['week_start_day']);
$end = $this->substr_date($weekinfo['week_end_day']);
$range = "{$start} ~ {$end}";
$range_arr[] = $range;
$sdate = date('Y-m-d', strtotime($sdate)+7*86400);
}while($end_day
return $range_arr;
}
/**
* 获取指定日期之间的各个月
*/
public function get_months($sdate, $edate) {
$range_arr = array();
do {
$monthinfo = $this->get_monthinfo_by_date($sdate);
$end_day = $monthinfo['month_end_day'];
$start = $this->substr_date($monthinfo['month_start_day']);
$end = $this->substr_date($monthinfo['month_end_day']);
$range = "{$start} ~ {$end}";
$range_arr[] = $range;
$sdate = date('Y-m-d', strtotime($sdate.'+1 month'));
}while($end_day
return $range_arr;
}
/**
* 截取日期中的月份和日
* @param string $date
* @return string $date
*/
public function substr_date($date) {
if ( ! $date) return FALSE;
return date('m-d', strtotime($date));
}
/**
* 检查日期的有效性 YYYY-mm-dd
* @param array $date_arr
* @return boolean
*/
public function check_date($date_arr) {
$invalid_date_arr = array();
foreach ($date_arr as $row) {
$timestamp = strtotime($row);
$standard = date('Y-m-d', $timestamp);
if ($standard != $row) $invalid_date_arr[] = $row;
}
if ( ! empty($invalid_date_arr)) {
die("invalid date -> ".print_r($invalid_date_arr, TRUE));
}
}
}
类文件的使用
复制代码 代码如下:
require_once "Datefmt.class.php";
$datefmt = new Datefmt();
// 输出11月1日和30日之间的各周
var_dump($datefmt->get_weeks('2014-11-05', '2014-11-29'));
/*结果为
array(4) {
[0]=>
string(13) "11-03 ~ 11-09"
[1]=>
string(13) "11-10 ~ 11-16"
[2]=>
string(13) "11-17 ~ 11-23"
[3]=>
string(13) "11-24 ~ 11-30"
}
*/
// 输出2月1日和11月30日
var_dump($datefmt->get_months('2014-02-03', '2014-11-29'));
/*结果为
array(10) {
[0]=>
string(13) "02-01 ~ 02-28"
[1]=>
string(13) "03-01 ~ 03-31"
[2]=>
string(13) "04-01 ~ 04-30"
[3]=>
string(13) "05-01 ~ 05-31"
[4]=>
string(13) "06-01 ~ 06-30"
[5]=>
string(13) "07-01 ~ 07-31"
[6]=>
string(13) "08-01 ~ 08-31"
[7]=>
string(13) "09-01 ~ 09-30"
[8]=>
string(13) "10-01 ~ 10-31"
[9]=>
string(13) "11-01 ~ 11-30"
}
*/

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version
