douhuang75397 2015-05-06 05:20 采纳率: 0%
浏览 6
已采纳

动态显示一个月的日期名称 - PHP [重复]

This question already has an answer here:

I am looping the days of the current month and I want to display weekdays of the current month as well but i dont know.

//showing the days number of the current month
$currentDays = date('d');
for($i=1;$i<=$currentDays;$i++)
{
  //print the day number
  echo $i.'
';
}
</div>
  • 写回答

2条回答 默认 最新

  • duancan5327 2015-05-06 05:55
    关注

    You can use strtotime to get the timestamp of that specific day and then with that get the weekday name.

    $days = date( 'd' );
    $month = date( 'n' );
    
    for ( $day = 1; $day <= $days; $day++ )
        echo $day, ' is ', date( 'l', strtotime( $month . '/' . $day ) ), '
    ';
    

    To get a different weekday name for translations whatsoever, you must build your own array and get it through from there by changing the lowercase L to lowercase W, which will return you a weekday integer.

    $weekdays = array( "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" );
    $days = date( 'd' );
    $month = date( 'n' );
    
    for ( $day = 1; $day <= $days; $day++ )
        echo $day, ' is ', $weekdays[ date( 'w', strtotime( $month . '/' . $day ) ) ], '
    ';
    

    Keep in mind that you are using lowercase D in your days-variable, which means it will only count the days until today. You can use lowercase T to loop through all days of the specified month.

    The alternative is to use mktime as shown in another answer related to this question.

    In addition, instead of defining weekday names by yourself, you could simply set the locale setting to your choosing and strftime the weekday name (%A).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路