KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
iso3166
★ 65
Open GitHub ↗
ISO 3166-1 alpha-2 mapping
Download README (.md)
Explore Similar Repositories
econfig
:
Flexible configuration for Ruby applications
oodt
:
Mirror of Apache OODT
auto-ctags.vim
:
Vim plugin to execute ctags command on file change
CFGScanDroid
:
Control Flow Graph Scanning for Android
matcher
:
A declarative API for specifying expectations.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
iso3166
?
Download (.md)
iso3166 ======= ISO 3166-1 alpha-2 mapping: Get Country Name: ```php echo Iso3166\Codes::country('FR'); // 'France' ``` Get Phone Code: ```php echo Iso3166\Codes::phoneCode('FR'); // '33' ``` Get Continent Name: ```php echo Iso3166\Codes::continent('EU'); // 'Europa' ``` Plus one super handy helper: ```php echo Iso3166\Codes::countrySelector('class', 'name', 'FR'); ``` will output: ```html <select class="class" name="name"> <option value="AF">Afghanistan</option> ... <option value="FR" selected>France</option> ... </select> ```