wordpressvn/vietnam-address

Display information on the administrative divisions of Vietnam (Provinces, Cities, Districts, Towns, Communes, Wards, Townships, etc.)

1.0.0 2024-12-15 13:50 UTC

This package is auto-updated.

Last update: 2025-04-15 14:27:55 UTC


README

Installation

Install composer

composer require wordpressvn/vietnam-address

Usage

require 'vendor/autoload.php';

use WPVNTeam\VietnamAddressAPI\Address;

echo "<pre>";

print_r(Address::getProvinces());

Address::setSchema(['name', 'type']);

print_r(Address::getProvinces(['01', 87, 12]));

print_r(Address::getProvince('01'));

print_r(Address::getDistrictsByProvinceId('01'));

print_r(Address::getDistrict('009'));

print_r(Address::getWardsByDistrictId('009'));

print_r(Address::getWard('009', '00346'));

print_r(Address::getDistrictsByProvinceName('Tây Ninh'));

print_r(Address::getDistrictsByProvinceName('tay-ninh', 'slug'));

print_r(Address::getWardsByDistrictName('Tân Biên, Tây Ninh'));

print_r(Address::getWardsByDistrictName('Huyện Tân Biên, Tỉnh Tây Ninh', 'name_with_type'));