Faker\Provider\de_DE\Payment::bankAccountNumber PHP Метод

bankAccountNumber() публичный статический Метод

International Bank Account Number (IBAN)
public static bankAccountNumber ( string $prefix = '', string $countryCode = 'DE', integer $length = null ) : string
$prefix string for generating bank account number of a specific bank
$countryCode string ISO 3166-1 alpha-2 country code
$length integer total length without country code and 2 check digits
Результат string
    public static function bankAccountNumber($prefix = '', $countryCode = 'DE', $length = null)
    {
        return static::iban($countryCode, $prefix, $length);
    }