我得到这个值
$select_month_year = 12/2017
试试这个:
date('m', strtotime($select_month_year))
但输出是:
01
但输出应该是:
12
答案 0 :(得分:1)
$select_month_year = "12/2017";
$month = explode('/', $select_month_year)[0];
echo $month;
或者
$date = date_create_from_format('m/Y', '12/2017');
echo $date->format('m');