如何通过 php 从月份和年份值中获取月份

How to get month from month and year value by php

我得到这个值

$select_month_year = 12/2017

试试这个:

date('m', strtotime($select_month_year))

但输出是:

01

但输出应该是:

12
$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');