我每个月都使用数字。如果我想知道自5年(去年五月)过去了多少个月,我该怎么做呢?
$current_month = date('m');
$other_month = 5;
$months_since = ?;
所以有些结果会像:
示例1:
$current_month = 3
$other_month = 1
$months_since = 3
示例2:
$current_month = 3
$other_month = 9
$months_since = 7
答案 0 :(得分:1)
你在找这个吗?
try {
restTemplate.exchange(...);
} catch (HttpStatusCodeException e) {
return new ResponseEntity<>(e.getResponseBodyAsString(), e.getStatusCode());
}
答案 1 :(得分:-2)
根据您的逻辑,您可以使用以下代码:
$months_since = $current_month - $other_month + 1;