How can I get data from this web service using PHP?
I need a simple PHP function to list the countries.
Web service Data
{
"valid":true,
"id":"0",
"data":{
"@type":"genericObjectArray",
"item":[
{
"id":"DE",
"description":"Deutschland"
},
{
"id":"ES",
"description":"España"
},
{
"id":"FR",
"description":"France"
},
{
"id":"PT",
"description":"Portugal"
},
{
"id":"UK",
"description":"United Kingdom"
},
{
"id":"US",
"description":"United States"
}
]
}
}
Assuming
allow_url_fopenis on inphp.ini(if not, use cURL library).CodePad.
Of course, handle if
$jsonisFALSE(error with request).Alternatively, if using >= PHP 5.3.
CodePad.