caxy/postal-code

Simple class to convert US postal codes to US states

1.0.1 2015-09-21 17:26 UTC

This package is auto-updated.

Last update: 2024-04-22 05:54:44 UTC


README

This is a simple class to convert from a US ZIP code to a US state. The data comes from Wikipedia.

Usage

<?php

// Returns 'NY'
$state = \Caxy\PostalCode::toState('10271');

// Returns 'IL'
$state = \Caxy\PostalCode::toState('60607');