参考链接:
- https://github.com/pupuk/address-smart-parse 感谢作者的分享
- https://www.cnblogs.com/gqx-html/p/10790464.html
Take a look at contributing.md to see a to do list.
- PHP >= 7.1.0
- Mbstring PHP Extension
Via Composer
$ composer require zifan/addressparser
$options = ['strict' => true]
$parser = new AddressParser($options);
$parser->handle('浙江省杭州市滨江区西兴街道滨康路228号万福中心A座21楼');
Array $options Like:
[
'dataProvider' => [
'driver' => 'file' // 驱动,默认file,其它方式(如数据模型)可自行扩展
'path' => null, // 指定省市区数据文件,默认从插件config文件夹中读取
],
'enable_keywords_split' => false, // 是否启用关键词分割(适用于在淘宝、京东App上复制收货地址时开启,固定格式,拼多多不带关键字只是格式固定)
'keywords' => [ // enable_keywords_split 为 true 时才生效
'person' => ['收货人', '收件人', '姓名'],
'mobile' => ['手机号码', '手机', '联系方式', '电话号码', '电话'],
],
'extra' => [ // 额外提取字段
'sub_district' => false, // 村乡镇/街道(准确度低)
'idn' => false, // 身份证号
'mobile' => false, // 联系方式(手机号/座机号)
'postcode' => false, // 邮编
'person' => false, // 姓名(准确度低)
],
'strict' => false, // 是否对提取结果进行准确度校验、补齐
]
姓名:张三
地址:浙江省杭州市滨江区 西兴街道 滨康路228号万福中心A座21楼
收货人: 张三
手机号码: 158********
所在地区: 浙江省杭州市滨江区西兴街道
详细地址: 滨康路228号万福中心A座21楼
Please see the changelog for more information on what has changed recently.
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email s443939412@163.com instead of using the issue tracker.
MIT. Please see the license file for more information.