1 Star 7 Fork 6

一辈子那么长 / address-parse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

收货地址智能解析

收货地址智能解析,根据收货地址,智能解析出省市区,详情地址,以及收货人姓名,电话,邮政编码

安装

composer require alapi/address_parse

使用

use ALAPI\AddressParse;

require_once 'vendor/autoload.php';

$parse = new AddressParse();

$address = "北京 北京市 顺义区 胜利街道宜宾南区2-2-401 李俊南 18210997754";

print_r($parse->setType(1)->parse($address));

输出

Array
(
    [province] => 北京市
    [provinceCode] => 11
    [city] => 北京市
    [cityCode] => 1101
    [area] => 顺义区
    [areaCode] => 110113
    [detail] => 胜利街道宜宾南区2-2-401
    [phone] => 18210997754
    [postalCode] => 
    [name] => 李俊南
)

设置不同的解析方式,支持正则解析和树查找解析

use ALAPI\AddressParse;

$parse = new AddressParse();

$address = "北京 北京市 顺义区 胜利街道宜宾南区2-2-401 李俊南 18210997754";

$parse->setType(1)->parse($address); #正则解析,type 为 1

$parse->setType(2)->parse($address); #树查找解析, type 为2

ALAPI

ALAPI ,为开发者提供各种 API 开发支持

感谢

该组件参考 zh-address-parse 思路而来

License

MIT

The MIT License (MIT) Copyright (c) Alone88 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

收货地址智能解析,地址解析 展开 收起
PHP
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
PHP
1
https://gitee.com/alone88/address-parse.git
git@gitee.com:alone88/address-parse.git
alone88
address-parse
address-parse
master

搜索帮助