becklyn/postal-code-proximity
Composer 安装命令:
composer require becklyn/postal-code-proximity
包简介
Calculates near postal codes (given, that a pre-generated postal code lookup database exists).
关键字:
README 文档
README
If you have a pre-generated database with a mapping of postal codes to latitude & longitude, this library will help you with searching for nearby postal codes (in a given radius).
Usage
First you need to create a query generator. The query generator is responsible for generating the SQL for loading the data from the database. You need to specify the names of the table and the columns of your postal code table.
use Becklyn\PostalCodeProximity\QueryGenerator; $queryGenerator = new QueryGenerator($tableName, $latitudeColumn = "lat", $longitudeColumn = "lng", $postalCodeColumn = "zip");
Afterwards, you need to use a database adapter. There are already working adapters for PDO and mysqli.
use Becklyn\PostalCodeProximity\Adapter\PdoAdapter; $pdo = new \PDO("...", "user", "password"); $databaseAdapter = new PdoAdapter($pdo, $queryGenerator);
or
use Becklyn\PostalCodeProximity\Adapter\MysqliAdapter; $mysqli = new \mysqli("localhost", "user", "password", "dbname"); $databaseAdapter = new MysqliAdapter($mysqli, $queryGenerator);
And now you can query for nearby postal codes:
use Becklyn\PostalCodeProximity\PostalCodeLocator; $postalCodeLocator = new PostalCodeLocator($databaseAdapter); $postalCodeLocator->loadNearPostalCodes($postalCode, $radius, $limit = null);
$postalCodeis the postal code, like"12345"$radiusis the radius in km (air-line distance)$limit(optional) limit the number of results
Return value
You will receive an array of NearPostalCode
$nearPostalCode->getPostalCode(); $nearPostalCode->getDistanceInKm();
Error cases
There are two possible error case (except of exceptions directly from the databases):
AmbiguousPostalCodeException: if a given postal code is found multiple times in the postal code databaseQueryException: handles all error cases originating in the database. Warning: the exception messages may contain sensitive information.
Recommended database structure
postal_code CHAR(5)(may vary depending on your country of origin)latitude DOUBLElongitude DOUBLE
You should add an unique index to the postal_code fields and indexes on latitude and longitude.
becklyn/postal-code-proximity 适用场景与选型建议
becklyn/postal-code-proximity 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 31 次下载、GitHub Stars 达 1, 最近一次更新时间为 2015 年 03 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「postal-code」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 becklyn/postal-code-proximity 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 becklyn/postal-code-proximity 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 becklyn/postal-code-proximity 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Type-safe internationalization value objects and validation rules for Laravel applications including countries, currencies, locales, phone numbers, postal codes, and addresses
Validates and formats postal codes for all countries with a Laravel-first approach
A wrapper around ApiCheck API to validate addresses.
Laravel package for looking up Japanese addresses by postal code. Supports kanji, kana and romaji, full-width character normalization, CSV imports from Japan Post, and an optional JSON API.
CEP integration with ViaCep
ApiCheck wrapper for Laravel - address validation, search, and verification
统计信息
- 总下载量: 31
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-03-05