PHP code example of mmaher / address-string-parser

1. Go to this page and download the library: Download mmaher/address-string-parser library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mmaher / address-string-parser example snippets



$parser = new AddressStringParser\Parser();

$addressString = '1600 Pennsylvania Ave. NW Ofc. 6-A Washington, DC 20500-0004';
$addressArray  = $parser->parseAddress($addressString);

$addressArray = [
        'addressLine1'     => '1600 Pennsylvania Ave NW',
        'addressLine2'     => 'Ofc. 6-A',
        'zip'              => '20500',
        'zip4'             => '0004',
        'stateName'        => 'District Of Columbia',
        'state'            => 'DC',
        'city'             => 'Washington',
        'streetNumber'     => '1600',
        'streetName'       => 'Pennsylvania',
        'routeType'        => 'Ave',
        'streetDirection'  => 'NW',
        'country'          => 'USA',
        'formattedAddress' => '1600 Pennsylvania Ave NW, Ofc. 6-A, Washington, DC 20500-0004',
        'error'            => false,
        'errorMessage'     => null,
];