1

我有以下场景:用户选择年、月的日期选择器,并使用它来显示所选月份的记录。使用 Ajax 将所选值传递给 details_subcontractor.php。Datepicker 已从jQuery UI DatePicker 中接受的答案修改为仅显示月份年份。示例代码如下:

/**
 *  Datepicker in datepicker.php
 *
 */

$("#year_month").datepicker({"dateFormat":"yy-mm-dd",
    changeMonth: true,
    changeYear: true,
    dateFormat: 'yy-mm',
    showButtonPanel: true,
    onClose: function(dateText, inst) { 
        var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
        var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
        $(this).datepicker('setDate', new Date(year, month, 1));
    }
});

/**
 *  Ajax call
 *
 */

var year_month = $("#year_month").val();
$.ajax({
    url:"details_subcontractor.php",
    data:{
        year_month:year_month
    },
    success:function(data){
        $("#content_report").html(data);
    }
});


/**
 *  details_subcontractor.php
 *
 */

//$_GET['year_month']; //2012-12
$start = date('Y-m-d', strtotime($_GET['year_month']));                     //2012-12-18
$start = date('Y-m-d', strtotime('first day of ' . $_GET['year_month']));   //1970-01-01
$start = date('Y-m-d', strtotime($_GET['year_month'] . ' first day'));      //2012-12-19
$end   = date('Y-m-d', strtotime('last day of ' . $_GET['year_month']));    //1970-01-01
$end   = date('Y-m-d', strtotime($_GET['year_month'] . ' last day'));       //2012-12-17

但是,正如内联评论所示,我无法获得本月的第一天和最后一天。我知道在 PHP 5.3 中引入了“of”,其中包含“of”的 2 行失败,但我不理解其他三个的输出。最后我附加了“-01”和“-31”来表示一个月的第一天和最后一天。有没有人有更好的解决方案,适用于 PHP 5.2.6?

4

2 回答 2

3

您可以放心地假设每个月的第一天是1. 采用

date('Y-m-t', strtotime($_GET['year_month']));

该月的最后一天。

于 2012-12-19T13:09:36.240 回答
2
// The first day is always 01, so you can hardcode it
$start = date('Y-m-01', strtotime($_GET['year_month']));

// last day you can get by `t` format parameter, which contains total days count for given month.
$end = date('Y-m-t', strtotime($_GET['year_month']));
于 2012-12-19T13:12:06.400 回答