我有以下场景:用户选择年、月的日期选择器,并使用它来显示所选月份的记录。使用 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?