mcs/dutch-address

This package is abandoned and no longer maintained. No replacement package was suggested.

Split a Dutch street-address into a street, housenumber and extension

0.0.2 2016-08-02 10:18 UTC

This package is not auto-updated.

Last update: 2024-04-15 17:54:31 UTC


README

Latest Stable Version Latest Unstable Version License

Split a Dutch or German street-address into a street, housenumber and extension

Installation:

$ composer require mcs/dutch-address
require_once 'vendor/autoload.php';

try{

    $address = new MCS\DutchAddress('Jan Steenstraat 75');
    
    print_r($address);
        
} catch (Exception $e) {
    print_r($e->getMessage());    
}