bpost-addresses
A php class for Bpost addresses validation API, (*1)
bpost (Belgian Post Group) provides an API to validate belgian address : https://www.bpost.be/site/en/webservice-address., (*2)
The goal of this tool is to help querying the bpost API easily with PHP., (*3)
Install
The tool only requires PHP 7.0+ and guzzlehttp/guzzle., (*4)
Use it via composer + packagist: https://packagist.org/packages/ici-brussels/bpost-addresses, (*5)
Usage
$bpost = new Bpost_Address_Validation();
// Find relevant address according to input
/* Option 1: Structured */
$bpost->getAddress_Structured("Rue de la loix", "15", null, 1000, "Bruxelles");
/* Option 2: Unstructured */
$bpost->getAddress_Unstructured("rue de la loi 15, 1000 bruxelles");
// get array with validated address
$result = $bpost->getStructuredAddress();
print_r($result);
/*
Array
(
[StreetName] => Rue De La Loi
[StreetNumber] => 15
[BoxNumber] =>
[PostalCode] => 1040
[MunicipalityName] => Bruxelles
[CountryName] => Belgique
)
*/
// get array with latitude/longitude
$result = $bpost->getGeographicalLocation();
print_r($result);
/*
Array
(
[lat] => 50.845465
[lon] => 4.369107
)
*/
Credits