|
发表于 2013-10-29 14:08:27
|
显示全部楼层
你可以用php算出时间,然后去查,PS
/**
* 返回本周第一天
*
* @param int $timestamp 某个星期的某一个时间戳,默认为当前时间
* @param bollean $is_return_timestamp ,是否返回时间戳,否则返回时间格式
*
* @return int
*/
private function _this_monday($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];
}
/**
* 这个月的第一天
*
* @param int $timestamp 某个月的某一个时间戳,默认为当前时间
* @param bollean $is_return_timestamp ,是否返回时间戳,否则返回时间格式
*
* @return int
*/
private function _month_firstday($timestamp = 0, $is_return_timestamp = true) {
static $cache;
$id = $timestamp . $is_return_timestamp;
if (!isset($cache[$id])) {
if (!$timestamp)
$timestamp = time();
$firstday = date('Y-m-d', mktime(0, 0, 0, date('m', $timestamp), 1, date('Y', $timestamp)));
if ($is_return_timestamp) {
$cache[$id] = strtotime($firstday);
} else {
$cache[$id] = $firstday;
}
}
return $cache[$id];
} |
|