carpcai/address-parser

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

1.2.0 2020-02-24 04:00 UTC

This package is auto-updated.

Last update: 2024-03-24 22:07:02 UTC


README

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"
}