gpt4 book ai didi

php - 获取给定月份的所有日期和日期

转载 作者:可可西里 更新时间:2023-11-01 13:33:07 26 4
gpt4 key购买 nike

想要检索给定月份的所有日期和日期。当前有这个显示当前月份的所有日期,但我如何在指定的月份中解析?

$list=array();
for($d=1; $d<=31; $d++)
{
$time=mktime(12, 0, 0, date('m'), $d, date('Y'));
if (date('m', $time)==date('m'))
$list[]=date('Y-m-d-D', $time);
}
echo "<pre>";
print_r($list);
echo "</pre>";

最佳答案

试试这个

$list=array();
$month = 12;
$year = 2014;

for($d=1; $d<=31; $d++)
{
$time=mktime(12, 0, 0, $month, $d, $year);
if (date('m', $time)==$month)
$list[]=date('Y-m-d-D', $time);
}
echo "<pre>";
print_r($list);
echo "</pre>";

关于php - 获取给定月份的所有日期和日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23780293/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com