PHP code example of keo / iso-639

1. Go to this page and download the library: Download keo/iso-639 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/ */

    

keo / iso-639 example snippets

 php
use ISO638\Languages;

// from getter
$languages = (new Languages())->getLanguages();
var_dump($languages);

// or as static public array inside Language class
$languages = Languages::$languages;
var_dump($languages);