1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?php
function donnees_adresse($adresse, $codepostal)
{
$adresse2 = str_replace(' ','+',strtolower($adresse));
$ch = curl_init("http://api-adresse.data.gouv.fr/search/?q=$adresse2&postcode=$codepostal");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch,CURLOPT_HEADER,0);
$json = curl_exec($ch);
curl_close($ch);
return $json;
}
$result = json_decode(donnees_adresse("8 bd du port", "44380"));
var_dump($result);
die(); |
Partager