PHP code example of vasildakov / postcode
1. Go to this page and download the library: Download vasildakov/postcode 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/ */
vasildakov / postcode example snippets
use VasilDakov\Postcode\Postcode;
// Create a Postcode
$postcode = new Postcode('EC1V 9LB');
// Validate Postcode value
print $postcode->valid();
$postcode->normalise() // => "EC1V 9LB"
$postcode->outcode() // => "EC1V"
$postcode->incode() // => "9LB"
$postcode->area() // => "EC"
$postcode->district() // => "EC1"
$postcode->subdistrict() // => "EC1V"
$postcode->sector() // => "EC1V 9"
$postcode->unit() // => "LB"