duanrang2627 2017-10-02 10:34
浏览 42
已采纳

如何从给定的数字月份PHP获取该月的第一个和最后一个日期

I want to get the first date and last date of the month if given I have a numeric number of the month.

For example January = 01, October = 10, November = 11

So if I pass 10 as parameter I should get the first and last date of October.

I tried to implement it using Carbon. But I gives me different result.

Here is the code. The result is is next to it.

$dt =  Carbon::create(10);
echo $dt->startOfMonth(); // 0010-10-01 00:00:00
echo $dt->endOfMonth(); // 0010-10-31 00:00:00
  • 写回答

2条回答 默认 最新

  • doula2426 2017-10-02 10:37
    关注

    The first day of any month is the first.

    use createFromFormat

    $dt = Carbon::createFromFormat('m', 10);
    echo $dt->endOfMonth();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 adb连接不到手机是怎么回事?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联
  • ¥15 VB.NET操作免驱摄像头
  • ¥15 笔记本上移动热点开关状态查询
  • ¥85 类鸟群Boids——仿真鸟群避障的相关问题
  • ¥15 CFEDEM自带算例错误,如何解决?
  • ¥15 有没有会使用flac3d软件的家人
  • ¥20 360摄像头无法解绑使用,请教解绑当前账号绑定问题,
  • ¥15 docker实践项目