PHP code example of juanparati / iso-codes

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()
    ->map(fn ($iso) => [
        'label' => $iso->name . ' (' . $iso->alpha2 . ')',
        'value' => $iso->alpha2
    ])
    ->sortBy('label')
    ->values();

(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();

(new ISOCodes)
    ->countries()
    ->setResolution('currencies', \Juanparati\ISOCodes\Enums\NodeResolution::NODE_AS_ALL)
    ->setResolution('languages', \Juanparati\ISOCodes\Enums\NodeResolution::NODE_AS_ALL)
    ->setResolution('continents', \Juanparati\ISOCodes\Enums\NodeResolution::NODE_AS_ALL)
    ->findByAlpha2('PT')
    ->toArray();

$iso = new ISOCodes();

echo $iso->countries()
    ->setResolution('currencies', \Juanparati\ISOCodes\Enums\NodeResolution::NODE_AS_ALL)
    ->findByAlpha2('PT')
    ->currencies[0];  // Returns "Euro"

echo $iso->countries()
    ->findByAlpha2('PT')
    ->currencies[0];  // Returns "EUR"

$iso = new ISOCodes(new ISOCodes(defaultResolutions: [
            'currencies' =>  \Juanparati\ISOCodes\Enums\NodeResolution::NODE_AS_NAME
        ]);

new ISOCodes(['countries' => MyCountryTranslation::class])

\Juanparati\ISOCodes\Models\CountryModel::macro('allEUMembers', function () {
    return $this->where('eu_member', true)->all();
});

(new ISOCodes)->countries()->allEUMembers()->count();   // 27