Skip to content

carpcai/address-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Address Parser

Build Status Scrutinizer Code Quality Build Status Code Intelligence Status

A PHP library covers PHP 5.4 to 7.3, split an address street to street, states, city, zipcode.

Installation

This project can be installed via Composer:

$ composer require carpcai/address-parser

How to use

You can use the service as follows:

$addressObj = Parser::newParse('555 Test Drive, Testville, CA 98773');

var_dump([
    'country'      => $addressObj->country,
    'state'        => $addressObj->state,
    'city'         => $addressObj->city,
    'addressLine1' => $addressObj->addressLine1,
    'addressLine2' => $addressObj->addressLine2,
    'zipcode'      => $addressObj->zipcode,
]);

The output of this command will be:

array(6) {
  ["country"]=>
  string(2) "US"
  ["state"]=>
  string(2) "CA"
  ["city"]=>
  string(9) "Testville"
  ["addressLine1"]=>
  string(14) "555 Test Drive"
  ["addressLine2"]=>
  string(0) ""
  ["zipcode"]=>
  string(5) "98773"
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages