Я
Size: a a a
Я
OK
B
B
Я
OK
r🧬
OK
B
r🧬
r🧬
Я
Я
Я
Я
Я
OK
OK
B
public function getUsers(array $users, string $monthNumber): ?array
{
return array_filter($users, function (array $user) use ($monthNumber) {
$date = new DateTime($user['birthday']);
return $date->format("m") === $monthNumber;
});
}
r🧬
public function getUsers(array $users, string $monthNumber): ?array
{
return array_filter($users, function (array $user) use ($monthNumber) {
$date = new DateTime($user['birthday']);
return $date->format("m") === $monthNumber;
});
}