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);