function getRankValue(int $order): int { if ($order <= 1) { return 1; } if ($order % 2) { $order -= 1; } return pow(2, $order / 2); } echo getRankValue(10);