DownloadEuropean
Methods relating to Europe and the European Union.
Usage
use peterkahl\European\European;
echo (European::isEuropeanCountry('GB')) ? 'yes' : 'no'; # yes
echo (European::isEuropeanCountry('RU')) ? 'yes' : 'no'; # no
echo (European::isEuropeanCountry('AL')) ? 'yes' : 'no'; # yes
echo (European::isEEACountry('GB')) ? 'yes' : 'no'; # yes
echo (European::isEEACountry('AR')) ? 'yes' : 'no'; # no
echo (European::isEEACountry('NO')) ? 'yes' : 'no'; # yes
echo (European::isEuropeanUnionCountry('GB')) ? 'yes' : 'no'; # no
echo (European::isEuropeanUnionCountry('CA')) ? 'yes' : 'no'; # no
echo (European::isEuropeanUnionCountry('GB')) ? 'yes' : 'no'; # yes
echo (European::countryUsesEuro('GB')) ? 'yes' : 'no'; # no
echo (European::countryUsesEuro('MC')) ? 'yes' : 'no'; # yes
|