1. Go to this page and download the library: Download juanparati/iso-codes library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
juanparati / iso-codes example snippets
(new ISOCodes)
->countries()
->all();
(new ISOCodes)
->countries()
->firstWhere('alpha2', 'ES');
(new ISOCodes)
->countries()
->findByAlpha2('ES');
(new ISOCodes)
->countries()
->whereContinent('EU');
(new ISOCodes)
->countries()
->whereContinent('EU', true);
(new ISOCodes)
->countries()
->whereContinent(['EU', 'AS'], true);
(new ISOCodes)
->countries()
->whereContinent(['EU', 'AS']);
(new ISOCodes)
->countries()
->all()
->where('currencies', ['EUR'])
->sortByDesc('numeric');
(new ISOCodes)
->countries()
->whereCurrency('EUR', true)
->sortByDesc('numeric');
(new ISOCodes)
->countries()
->whereCurrency('EUR');
(new ISOCodes)
->countries()
->whereLanguage('PT');
(new ISOCodes)->languages()->toArray();
(new ISOCodes)->continents()->toArray();
(new ISOCodes)->currencies()->toArray();
(new ISOCodes)->currencyNumbers()->toArray();
$spain = (new ISOCodes)
->countries()
->findByAlpha2('ES');
$spain->name; // Spain
$spain['name']; // Spain
$spain->toArray(); // Get record as array
$spain->toJson(); // Get record as Json
(new ISOCodes)
->countries()
->setCurrencyAsNumber(true)
->all();