我有代表一个月的数据字符串。例如“00”是一月,“01”是二月,“02”是三月等等。如何使字符串表示像这样“01”是一月,“02”是二月等等,这是一种更简单的方法。我找不到任何可以解决问题的 PHP 函数。
/* 将月份类型转换为 int,如果小于一位添加零并转换为字符串,否则如果超过 9(2 位)转换为字符串 */
$month = "00"; // represents January
$month = (int) $month;
$month += 1;
if ($month <= 9){
$month = str_pad($month, 2, "0", STR_PAD_LEFT);
}
elseif ($month > 9){
$month = (string) $month;
}
提前致谢