php数字月份转换为英文缩写
实现数字月份到英文月份缩写的转换,调换一下位置就可以倒转过来,同样可以实现各种映射。
class month_convert {
private $Month_E = array(1 => "Jan",
2 => "Feb",
3 => "Mar",
4 => "Apr",
5 => "May",
6 => "Jun",
7 => "Jul",
8 => "Aug",
9 => "Sep",
10 => "Oct",
11 => "Nov",
12 => "Dec");
public function Month_E($Num)
{
return $this->Month_E[$Num];
}
}