PHP处理地址匹配出省市区

function handleAddress($address ='广东省深圳市龙华新区大浪街道同胜科技大厦'){
  preg_match('/(.*?(省|自治区|北京市|天津市))/', $address, $matches);
  if (count($matches) > 1) {
    $province = $matches[count($matches) - 2];
    $address = str_replace($province, '', $address);
  }
  preg_match('/(.*?(市|自治州|地区|区划|县))/', $address, $matches);
  if (count($matches) > 1) {
    $city = $matches[count($matches) - 2];
    $address = str_replace($city, '', $address);
  }
  preg_match('/(.*?(区|县|镇|乡|街道))/', $address, $matches);
  if (count($matches) > 1) {
    $area = $matches[count($matches) - 2];
    $address = str_replace($area, '', $address);
  }
  return [
    'province' => isset($province) ? $province : '',
    'city' => isset($city) ? $city : '',
    'area' => isset($area) ? $area : '',
  ];
}

dump(handleAddress('广东省深圳市南山区科技生态园'));

 

PHP处理地址匹配出省市区

 

相关文章:

  • 2021-12-04
  • 2022-12-23
  • 2021-08-14
  • 2021-09-14
  • 2022-12-23
  • 2021-11-11
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
  • 2021-07-20
  • 2022-02-16
  • 2021-11-02
  • 2021-11-12
相关资源
相似解决方案