php根據(jù)年月獲取當月天數(shù)及日期數(shù)組的方法
本文實例講述了php根據(jù)年月獲取當月天數(shù)及日期數(shù)組的方法。分享給大家供大家參考,具體如下:
function get_day( $date )
{
$tem = explode('-' , $date); //切割日期 得到年份和月份
$year = $tem['0'];
$month = $tem['1'];
if( in_array($month , array( 1 , 3 , 5 , 7 , 8 , 01 , 03 , 05 , 07 , 08 , 10 , 12)))
{
// $text = $year.'年的'.$month.'月有31天';
$text = '31';
}
elseif( $month == 2 )
{
if ( $year%400 == 0 || ($year%4 == 0 && $year%100 !== 0) ) //判斷是否是閏年
{
// $text = $year.'年的'.$month.'月有29天';
$text = '29';
}
else{
// $text = $year.'年的'.$month.'月有28天';
$text = '28';
}
}
else{
// $text = $year.'年的'.$month.'月有30天';
$text = '30';
}
return $text;
}
echo get_day('2016-8-1');
運行結果為:31
改造,返回日期數(shù)組:
/**
* 獲取當月天數(shù)
* @param $date
* @param $rtype 1天數(shù) 2具體日期數(shù)組
* @return
*/
function get_day( $date ,$rtype = '1')
{
$tem = explode('-' , $date); //切割日期 得到年份和月份
$year = $tem['0'];
$month = $tem['1'];
if( in_array($month , array( 1 , 3 , 5 , 7 , 8 , 01 , 03 , 05 , 07 , 08 , 10 , 12)))
{
// $text = $year.'年的'.$month.'月有31天';
$text = '31';
}
elseif( $month == 2 )
{
if ( $year%400 == 0 || ($year%4 == 0 && $year%100 !== 0) ) //判斷是否是閏年
{
// $text = $year.'年的'.$month.'月有29天';
$text = '29';
}
else{
// $text = $year.'年的'.$month.'月有28天';
$text = '28';
}
}
else{
// $text = $year.'年的'.$month.'月有30天';
$text = '30';
}
if ($rtype == '2') {
for ($i = 1; $i <= $text ; $i ++ ) {
$r[] = $year."-".$month."-".$i;
}
} else {
$r = $text;
}
return $r;
}
var_dump(get_day('2016-8-1','2'));
運行結果如下:
array(31) {
[0]=>
string(8) "2016-8-1"
[1]=>
string(8) "2016-8-2"
[2]=>
string(8) "2016-8-3"
[3]=>
string(8) "2016-8-4"
[4]=>
string(8) "2016-8-5"
[5]=>
string(8) "2016-8-6"
[6]=>
string(8) "2016-8-7"
[7]=>
string(8) "2016-8-8"
[8]=>
string(8) "2016-8-9"
[9]=>
string(9) "2016-8-10"
[10]=>
string(9) "2016-8-11"
[11]=>
string(9) "2016-8-12"
[12]=>
string(9) "2016-8-13"
[13]=>
string(9) "2016-8-14"
[14]=>
string(9) "2016-8-15"
[15]=>
string(9) "2016-8-16"
[16]=>
string(9) "2016-8-17"
[17]=>
string(9) "2016-8-18"
[18]=>
string(9) "2016-8-19"
[19]=>
string(9) "2016-8-20"
[20]=>
string(9) "2016-8-21"
[21]=>
string(9) "2016-8-22"
[22]=>
string(9) "2016-8-23"
[23]=>
string(9) "2016-8-24"
[24]=>
string(9) "2016-8-25"
[25]=>
string(9) "2016-8-26"
[26]=>
string(9) "2016-8-27"
[27]=>
string(9) "2016-8-28"
[28]=>
string(9) "2016-8-29"
[29]=>
string(9) "2016-8-30"
[30]=>
string(9) "2016-8-31"
}
更多關于PHP相關內(nèi)容感興趣的讀者可查看本站專題:《php日期與時間用法總結》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《PHP運算與運算符用法總結》、《php面向對象程序設計入門教程》、《PHP網(wǎng)絡編程技巧總結》、《php字符串(string)用法總結》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。
相關文章
檢查url鏈接是否已經(jīng)有參數(shù)的php代碼 添加 ? 或 &
有時候我們需要檢查 URL 鏈接是否已經(jīng)有參數(shù),然后根據(jù)需要判斷是添加 ? 還是添加 & 在結尾,這只是一個很小的技巧,但是在做分頁或者頁面跳轉時還是有些用處的。2010-02-02
php中curl和file_get_content的區(qū)別
抓取遠程內(nèi)容,之前一直都在用file_get_content函數(shù),其實早就知道有curl這么一個好東西的存在,但是看了一眼后感覺使用頗有些復雜,沒有file_get_content那么簡單,再就是需求也不大,所以沒有學習使用curl2014-05-05
詳解Swoole TCP流數(shù)據(jù)邊界問題解決方案
本文主要介紹了Swoole TCP流數(shù)據(jù)邊界問題解決方案,對Swoole感興趣的同學,可以參考下。2021-05-05
解決wincache不支持64位PHP5.5/5.6的問題(提供64位wincache下載)
這篇文章主要解決wincache不支持64位PHP5.5/5.6的問題,并提供64位wincache的下載,需要的朋友可以參考下。2016-06-06

