截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RegionLogic.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\logic;
  20. use app\common\basics\Logic;
  21. use app\common\model\DevRegion;
  22. class RegionLogic extends Logic
  23. {
  24. /**
  25. * @notes 地级市
  26. * @return array
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @author ljj
  31. * @date 2022/9/20 5:49 下午
  32. */
  33. public static function city()
  34. {
  35. $lists = DevRegion::where(['level'=>2])
  36. ->field('id,parent_id,level,name,short,city_code,zip_code,gcj02_lng,gcj02_lat,db09_lng,db09_lat,remark1,remark2')
  37. ->select()
  38. ->toArray();
  39. $lists = self::groupByInitials($lists);
  40. unset($lists[null]);
  41. return $lists;
  42. }
  43. /**
  44. * 二维数组根据首字母分组排序
  45. * @param array $data 二维数组
  46. * @param string $targetKey 首字母的键名
  47. * @return array 根据首字母关联的二维数组
  48. */
  49. public static function groupByInitials(array $data, $targetKey = 'name')
  50. {
  51. $data = array_map(function ($item) use ($targetKey) {
  52. return array_merge($item, [
  53. 'initials' => self::getInitials($item[$targetKey]),
  54. ]);
  55. }, $data);
  56. $data = self::sortInitials($data);
  57. return $data;
  58. }
  59. /**
  60. * 按字母排序
  61. * @param array $data
  62. * @return array
  63. */
  64. public static function sortInitials(array $data)
  65. {
  66. $sortData = [];
  67. foreach ($data as $key => $value) {
  68. $sortData[$value['initials']][] = $value;
  69. }
  70. ksort($sortData);
  71. return $sortData;
  72. }
  73. /**
  74. * 获取首字母
  75. * @param string $str 汉字字符串
  76. * @return string 首字母
  77. */
  78. public static function getInitials($str)
  79. {
  80. if (empty($str)) {return '';}
  81. $fchar = ord($str[0]);
  82. if ($fchar >= ord('A') && $fchar <= ord('z')) {
  83. return strtoupper($str[0]);
  84. }
  85. $s1 = iconv('UTF-8', 'GBK', $str);
  86. $s2 = iconv('GBK', 'UTF-8', $s1);
  87. $s = $s2 == $str ? $s1 : $str;
  88. $asc = ord($s[0]) * 256 + ord($s[1]) - 65536;
  89. if ($asc >= -20319 && $asc <= -20284) {
  90. return 'A';
  91. }
  92. if ($asc >= -20283 && $asc <= -19776) {
  93. return 'B';
  94. }
  95. if ($asc >= -19775 && $asc <= -19219) {
  96. return 'C';
  97. }
  98. if ($asc >= -19218 && $asc <= -18711) {
  99. return 'D';
  100. }
  101. if ($asc >= -18710 && $asc <= -18527) {
  102. return 'E';
  103. }
  104. if ($asc >= -18526 && $asc <= -18240) {
  105. return 'F';
  106. }
  107. if ($asc >= -18239 && $asc <= -17923) {
  108. return 'G';
  109. }
  110. if ($asc >= -17922 && $asc <= -17418) {
  111. return 'H';
  112. }
  113. if ($asc >= -17417 && $asc <= -16475) {
  114. return 'J';
  115. }
  116. if ($asc >= -16474 && $asc <= -16213) {
  117. return 'K';
  118. }
  119. if ($asc >= -16212 && $asc <= -15641) {
  120. return 'L';
  121. }
  122. if ($asc >= -15640 && $asc <= -15166) {
  123. return 'M';
  124. }
  125. if ($asc >= -15165 && $asc <= -14923) {
  126. return 'N';
  127. }
  128. if ($asc >= -14922 && $asc <= -14915) {
  129. return 'O';
  130. }
  131. if ($asc >= -14914 && $asc <= -14631) {
  132. return 'P';
  133. }
  134. if ($asc >= -14630 && $asc <= -14150) {
  135. return 'Q';
  136. }
  137. if ($asc >= -14149 && $asc <= -14091) {
  138. return 'R';
  139. }
  140. if ($asc >= -14090 && $asc <= -13319) {
  141. return 'S';
  142. }
  143. if ($asc >= -13318 && $asc <= -12839) {
  144. return 'T';
  145. }
  146. if ($asc >= -12838 && $asc <= -12557) {
  147. return 'W';
  148. }
  149. if ($asc >= -12556 && $asc <= -11848) {
  150. return 'X';
  151. }
  152. if ($asc >= -11847 && $asc <= -11056) {
  153. return 'Y';
  154. }
  155. if ($asc >= -11055 && $asc <= -10247) {
  156. return 'Z';
  157. }
  158. return null;
  159. }
  160. }