<?php
foreach (['BG','EN','ES','DE','FR','FI','RU'] as $locale) {
foreach (['SHORT', 'LONG'] as $type) {
echo "$locale ", str_pad($type, 5), ": ";
echo new NumberFormatter($locale, NumberFormatter::{"DECIMAL_COMPACT_$type"})->format(1200), "\n";
}
echo "\n";
}