PHP Array of VAT rates per EU country

Snippet

An array with the EU countries with standart VAT rates. Do not use these numbers in production, they are not regularly updated. (Last update: 21.12.2019)

downloadcopy
$vat = [
    'AT' => 20,
    'BE' => 21,
    'BG' => 20,
    'CY' => 19,
    'CZ' => 21,
    'DE' => 19,
    'DK' => 25,
    'EE' => 20,
    'ES' => 21,
    'FI' => 24,
    'FR' => 20,
    'GB' => 20,
    'GR' => 24,
    'HU' => 27,
    'HR' => 25,
    'IE' => 23,
    'IT' => 22,
    'LT' => 21,
    'LU' => 17,
    'LV' => 21,
    'MT' => 18,
    'NL' => 21,
    'PL' => 23,
    'PT' => 23,
    'RO' => 19,
    'SE' => 25,
    'SI' => 22,
    'SK' => 20,
    'TR' => 18, //not in EU
    'UK' => 20 //not in EU
];