DownloadEuropean
![If this project has business value for you then don't hesitate to support me with a small donation.](https://img.shields.io/badge/Donations-via%20Paypal-blue.svg)
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
|