ExtendService.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\service;
  15. use library\tools\Http;
  16. use think\Db;
  17. /**
  18. * 短信业务扩展服务
  19. * Class ExtendService
  20. * @package app\store\service
  21. * =================================
  22. * =================================
  23. * 发送国内短信需要给产品码 [productid]
  24. * --- 验证短信的产品码为:676767
  25. * --- 营销短信的产品码为:333333
  26. * ---------------------------------
  27. * ---------------------------------
  28. * 发送国际短信需要给国家代码 [code]
  29. * --- 国家代码见 getGlobeRegionMap
  30. * ---------------------------------
  31. * ---------------------------------
  32. * 需要开通短信账号请联系客服
  33. * --- 客服电话:18122377655
  34. * =================================
  35. */
  36. class ExtendService
  37. {
  38. /**
  39. * 发送国内短信验证码
  40. * @param string $mid 会员ID
  41. * @param string $phone 手机号
  42. * @param string $content 短信内容
  43. * @param string $productid 短信通道ID
  44. * @return boolean
  45. * @throws \think\Exception
  46. * @throws \think\exception\PDOException
  47. */
  48. public static function sendChinaSms($mid, $phone, $content, $productid = '676767')
  49. {
  50. $tkey = date("YmdHis");
  51. $result = Http::post('http://www.ztsms.cn/sendNSms.do', [
  52. 'tkey' => $tkey, 'mobile' => $phone, 'content' => $content,
  53. 'username' => sysconf('sms_zt_username'), 'productid' => $productid,
  54. 'password' => md5(md5(sysconf('sms_zt_password')) . $tkey),
  55. ]);
  56. list($code, $msg) = explode(',', $result . ',');
  57. Db::name('StoreMemberSmsHistory')->insert([
  58. 'mid' => $mid, 'phone' => $phone, 'content' => $content, 'result' => $result
  59. ]);
  60. return intval($code) === 1;
  61. }
  62. /**
  63. * 发送国内短信验证码
  64. * @param string $mid 会员ID
  65. * @param string $phone 目标手机
  66. * @param integer $wait 等待时间
  67. * @param string $type 短信模板
  68. * @return array
  69. * @throws \think\Exception
  70. * @throws \think\exception\PDOException
  71. */
  72. public static function sendChinaSmsByCode($mid, $phone, $wait = 120, $type = 'sms_reg_template')
  73. {
  74. $cache = cache($ckey = "{$type}_{$phone}");
  75. if (is_array($cache) && isset($cache['time']) && $cache['time'] > time() - $wait) {
  76. $dtime = ($cache['time'] + $wait < time()) ? 0 : ($wait - time() + $cache['time']);
  77. return [1, '短信验证码已经发送!', ['time' => $dtime]];
  78. }
  79. list($code, $content) = [rand(1000, 9999), sysconf($type)];
  80. if (empty($content) || stripos($content, '{code}') === false) {
  81. $content = '您的验证码为{code},请在十分钟内完成操作!';
  82. }
  83. cache($ckey, $cache = ['phone' => $phone, 'code' => $code, 'time' => time()], 600);
  84. if (self::sendChinaSms($mid, $phone, str_replace('{code}', $code, $content))) {
  85. $dtime = ($cache['time'] + $wait < time()) ? 0 : ($wait - time() + $cache['time']);
  86. return [1, '短信验证码发送成功!', ['time' => $dtime]];
  87. } else {
  88. return [0, '短信发送失败,请稍候再试!', []];
  89. }
  90. }
  91. /**
  92. * 验证手机短信验证码
  93. * @param string $phone 目标手机
  94. * @param string $code 短信验证码
  95. * @param string $type 短信模板
  96. * @return boolean
  97. */
  98. public static function checkChinaSmsByCode($phone, $code, $type = 'sms_reg_template')
  99. {
  100. $cache = cache($cachekey = "{$type}_{$phone}");
  101. return is_array($cache) && isset($cache['code']) && $cache['code'] == $code;
  102. }
  103. /**
  104. * 查询国内短信余额
  105. * @return array
  106. * @throws \think\Exception
  107. * @throws \think\exception\PDOException
  108. */
  109. public static function queryChinaSmsBalance()
  110. {
  111. $tkey = date("YmdHis");
  112. $result = Http::post('http://www.ztsms.cn/balanceN.do', [
  113. 'username' => sysconf('sms_zt_username'), 'tkey' => $tkey,
  114. 'password' => md5(md5(sysconf('sms_zt_password')) . $tkey),
  115. ]);
  116. if ($result > -1) {
  117. return ['code' => 1, 'num' => $result, 'msg' => '获取短信剩余条数成功!'];
  118. } elseif ($result > -2) {
  119. return ['code' => 0, 'num' => '0', 'msg' => '用户名或者密码不正确!'];
  120. } elseif ($result > -3) {
  121. return ['code' => 0, 'num' => '0', 'msg' => 'tkey不正确!'];
  122. } elseif ($result > -4) {
  123. return ['code' => 0, 'num' => '0', 'msg' => '用户不存在或用户停用!'];
  124. }
  125. }
  126. /**
  127. * 错误消息处理
  128. * @var array
  129. */
  130. private static $globeMessageMap = [
  131. 2 => '用户账号为空',
  132. 3 => '用户账号错误',
  133. 4 => '授权密码为空',
  134. 5 => '授权密码错误',
  135. 6 => '当前时间为空',
  136. 7 => '当前时间错误',
  137. 8 => '用户类型错误',
  138. 9 => '用户鉴权错误',
  139. 10 => '请求IP已被列入黑名单',
  140. ];
  141. /**
  142. * 发送国际短信内容
  143. * @param string $mid 会员编号
  144. * @param string $code 国家代码
  145. * @param string $mobile 手机号码
  146. * @param string $content 发送内容
  147. * @return boolean
  148. * @throws \think\Exception
  149. * @throws \think\exception\PDOException
  150. */
  151. public static function sendGlobeSms($mid, $code, $mobile, $content)
  152. {
  153. $tkey = date("YmdHis");
  154. $result = Http::post('http://intl.zthysms.com/intSendSms.do', [
  155. 'tkey' => $tkey, 'code' => $code, 'mobile' => $mobile,
  156. 'content' => $content, 'username' => sysconf('sms_zt_username2'),
  157. 'password' => md5(md5(sysconf('sms_zt_password2')) . $tkey),
  158. ]);
  159. Db::name('StoreMemberSmsHistory')->insert([
  160. 'mid' => $mid, 'region' => $code, 'phone' => $mobile, 'content' => $content, 'result' => $result,
  161. ]);
  162. return intval($result) === 1;
  163. }
  164. /**
  165. * 查询国际短信余额
  166. * @return array
  167. * @throws \think\Exception
  168. * @throws \think\exception\PDOException
  169. */
  170. public static function queryGlobeSmsBalance()
  171. {
  172. $tkey = date("YmdHis");
  173. $result = Http::post('http://intl.zthysms.com/intBalance.do', [
  174. 'username' => sysconf('sms_zt_username2'), 'tkey' => $tkey,
  175. 'password' => md5(md5(sysconf('sms_zt_password2')) . $tkey),
  176. ]);
  177. if (!is_numeric($result) && ($state = intval($result)) && isset(self::$globeMessageMap[$state])) {
  178. return ['code' => 0, 'num' => 0, 'msg' => self::$globeMessageMap[$state]];
  179. } else {
  180. return ['code' => 1, 'num' => $result, 'msg' => '查询成功'];
  181. }
  182. }
  183. /**
  184. * 获取国际地域编号
  185. * @return array
  186. */
  187. public static function getGlobeRegionMap()
  188. {
  189. return [
  190. ['title' => '中国 台湾', 'english' => 'Taiwan', 'code' => 886],
  191. ['title' => '东帝汶民主共和国', 'english' => 'DEMOCRATIC REPUBLIC OF TIMORLESTE', 'code' => 670],
  192. ['title' => '中非共和国', 'english' => 'Central African Republic', 'code' => 236],
  193. ['title' => '丹麦', 'english' => 'Denmark', 'code' => 45],
  194. ['title' => '乌克兰', 'english' => 'Ukraine', 'code' => 380],
  195. ['title' => '乌兹别克斯坦', 'english' => 'Uzbekistan', 'code' => 998],
  196. ['title' => '乌干达', 'english' => 'Uganda', 'code' => 256],
  197. ['title' => '乌拉圭', 'english' => 'Uruguay', 'code' => 598],
  198. ['title' => '乍得', 'english' => 'Chad', 'code' => 235],
  199. ['title' => '也门', 'english' => 'Yemen', 'code' => 967],
  200. ['title' => '亚美尼亚', 'english' => 'Armenia', 'code' => 374],
  201. ['title' => '以色列', 'english' => 'Israel', 'code' => 972],
  202. ['title' => '伊拉克', 'english' => 'Iraq', 'code' => 964],
  203. ['title' => '伊朗', 'english' => 'Iran', 'code' => 98],
  204. ['title' => '伯利兹', 'english' => 'Belize', 'code' => 501],
  205. ['title' => '佛得角', 'english' => 'Cape Verde', 'code' => 238],
  206. ['title' => '俄罗斯', 'english' => 'Russia', 'code' => 7],
  207. ['title' => '保加利亚', 'english' => 'Bulgaria', 'code' => 359],
  208. ['title' => '克罗地亚', 'english' => 'Croatia', 'code' => 385],
  209. ['title' => '关岛', 'english' => 'Guam', 'code' => 1671],
  210. ['title' => '冈比亚', 'english' => 'The Gambia', 'code' => 220],
  211. ['title' => '冰岛', 'english' => 'Iceland', 'code' => 354],
  212. ['title' => '几内亚', 'english' => 'Guinea', 'code' => 224],
  213. ['title' => '几内亚比绍', 'english' => 'Guinea - Bissau', 'code' => 245],
  214. ['title' => '列支敦士登', 'english' => 'Liechtenstein', 'code' => 423],
  215. ['title' => '刚果共和国', 'english' => 'The Republic of Congo', 'code' => 242],
  216. ['title' => '刚果民主共和国', 'english' => 'Democratic Republic of the Congo', 'code' => 243],
  217. ['title' => '利比亚', 'english' => 'Libya', 'code' => 218],
  218. ['title' => '利比里亚', 'english' => 'Liberia', 'code' => 231],
  219. ['title' => '加拿大', 'english' => 'Canada', 'code' => 1],
  220. ['title' => '加纳', 'english' => 'Ghana', 'code' => 233],
  221. ['title' => '加蓬', 'english' => 'Gabon', 'code' => 241],
  222. ['title' => '匈牙利', 'english' => 'Hungary', 'code' => 36],
  223. ['title' => '南非', 'english' => 'South Africa', 'code' => 27],
  224. ['title' => '博茨瓦纳', 'english' => 'Botswana', 'code' => 267],
  225. ['title' => '卡塔尔', 'english' => 'Qatar', 'code' => 974],
  226. ['title' => '卢旺达', 'english' => 'Rwanda', 'code' => 250],
  227. ['title' => '卢森堡', 'english' => 'Luxembourg', 'code' => 352],
  228. ['title' => '印尼', 'english' => 'Indonesia', 'code' => 62],
  229. ['title' => '印度', 'english' => 'India', 'code' => 91918919],
  230. ['title' => '危地马拉', 'english' => 'Guatemala', 'code' => 502],
  231. ['title' => '厄瓜多尔', 'english' => 'Ecuador', 'code' => 593],
  232. ['title' => '厄立特里亚', 'english' => 'Eritrea', 'code' => 291],
  233. ['title' => '叙利亚', 'english' => 'Syria', 'code' => 963],
  234. ['title' => '古巴', 'english' => 'Cuba', 'code' => 53],
  235. ['title' => '吉尔吉斯斯坦', 'english' => 'Kyrgyzstan', 'code' => 996],
  236. ['title' => '吉布提', 'english' => 'Djibouti', 'code' => 253],
  237. ['title' => '哥伦比亚', 'english' => 'Colombia', 'code' => 57],
  238. ['title' => '哥斯达黎加', 'english' => 'Costa Rica', 'code' => 506],
  239. ['title' => '喀麦隆', 'english' => 'Cameroon', 'code' => 237],
  240. ['title' => '图瓦卢', 'english' => 'Tuvalu', 'code' => 688],
  241. ['title' => '土库曼斯坦', 'english' => 'Turkmenistan', 'code' => 993],
  242. ['title' => '土耳其', 'english' => 'Turkey', 'code' => 90],
  243. ['title' => '圣卢西亚', 'english' => 'Saint Lucia', 'code' => 1758],
  244. ['title' => '圣基茨和尼维斯', 'english' => 'Saint Kitts and Nevis', 'code' => 1869],
  245. ['title' => '圣多美和普林西比', 'english' => 'Sao Tome and Principe', 'code' => 239],
  246. ['title' => '圣文森特和格林纳丁斯', 'english' => 'Saint Vincent and the Grenadines', 'code' => 1784],
  247. ['title' => '圣皮埃尔和密克隆群岛', 'english' => 'Saint Pierre and Miquelon', 'code' => 508],
  248. ['title' => '圣赫勒拿岛', 'english' => 'Saint Helena', 'code' => 290],
  249. ['title' => '圣马力诺', 'english' => 'San Marino', 'code' => 378],
  250. ['title' => '圭亚那', 'english' => 'Guyana', 'code' => 592],
  251. ['title' => '坦桑尼亚', 'english' => 'Tanzania', 'code' => 255],
  252. ['title' => '埃及', 'english' => 'Egypt', 'code' => 20],
  253. ['title' => '埃塞俄比亚', 'english' => 'Ethiopia', 'code' => 251],
  254. ['title' => '基里巴斯', 'english' => 'Kiribati', 'code' => 686],
  255. ['title' => '塔吉克斯坦', 'english' => 'Tajikistan', 'code' => 992],
  256. ['title' => '塞内加尔', 'english' => 'Senegal', 'code' => 221],
  257. ['title' => '塞尔维亚', 'english' => 'Serbia and Montenegro', 'code' => 381],
  258. ['title' => '塞拉利昂', 'english' => 'Sierra Leone', 'code' => 232],
  259. ['title' => '塞浦路斯', 'english' => 'Cyprus', 'code' => 357],
  260. ['title' => '塞舌尔', 'english' => 'Seychelles', 'code' => 248],
  261. ['title' => '墨西哥', 'english' => 'Mexico', 'code' => 52],
  262. ['title' => '多哥', 'english' => 'Togo', 'code' => 228],
  263. ['title' => '多米尼克', 'english' => 'Dominica', 'code' => 1767],
  264. ['title' => '奥地利', 'english' => 'Austria', 'code' => 43],
  265. ['title' => '委内瑞拉', 'english' => 'Venezuela', 'code' => 58],
  266. ['title' => '孟加拉', 'english' => 'Bangladesh', 'code' => 880],
  267. ['title' => '安哥拉', 'english' => 'Angola', 'code' => 244],
  268. ['title' => '安圭拉岛', 'english' => 'Anguilla', 'code' => 1264],
  269. ['title' => '安道尔', 'english' => 'Andorra', 'code' => 376],
  270. ['title' => '密克罗尼西亚', 'english' => 'Federated States of Micronesia', 'code' => 691],
  271. ['title' => '尼加拉瓜', 'english' => 'Nicaragua', 'code' => 505],
  272. ['title' => '尼日利亚', 'english' => 'Nigeria', 'code' => 234],
  273. ['title' => '尼日尔', 'english' => 'Niger', 'code' => 227],
  274. ['title' => '尼泊尔', 'english' => 'Nepal', 'code' => 977],
  275. ['title' => '巴勒斯坦', 'english' => 'Palestine', 'code' => 970],
  276. ['title' => '巴哈马', 'english' => 'The Bahamas', 'code' => 1242],
  277. ['title' => '巴基斯坦', 'english' => 'Pakistan', 'code' => 92],
  278. ['title' => '巴巴多斯', 'english' => 'Barbados', 'code' => 1246],
  279. ['title' => '巴布亚新几内亚', 'english' => 'Papua New Guinea', 'code' => 675],
  280. ['title' => '巴拉圭', 'english' => 'Paraguay', 'code' => 595],
  281. ['title' => '巴拿马', 'english' => 'Panama', 'code' => 507],
  282. ['title' => '巴林', 'english' => 'Bahrain', 'code' => 973],
  283. ['title' => '巴西', 'english' => 'Brazil', 'code' => 55],
  284. ['title' => '布基纳法索', 'english' => ' Burkina Faso', 'code' => 226],
  285. ['title' => '布隆迪', 'english' => 'Burundi', 'code' => 257],
  286. ['title' => '希腊', 'english' => ' Greece', 'code' => 30],
  287. ['title' => '帕劳', 'english' => 'Palau', 'code' => 680],
  288. ['title' => '库克群岛', 'english' => ' Cook Islands', 'code' => 682],
  289. ['title' => '开曼群岛', 'english' => 'Cayman Islands', 'code' => 1345],
  290. ['title' => '德国', 'english' => ' Germany', 'code' => 49],
  291. ['title' => '意大利', 'english' => 'Italy', 'code' => 39],
  292. ['title' => '所罗门群岛', 'english' => ' Solomon Islands', 'code' => 677],
  293. ['title' => '托克劳', 'english' => 'Tokelau', 'code' => 690],
  294. ['title' => '拉脱维亚', 'english' => 'Latvia', 'code' => 371],
  295. ['title' => '挪威', 'english' => 'Norway', 'code' => 47],
  296. ['title' => '捷克共和国', 'english' => 'Czech Republic', 'code' => 420],
  297. ['title' => '摩尔多瓦', 'english' => 'Moldova', 'code' => 373],
  298. ['title' => '摩洛哥', 'english' => 'Morocco', 'code' => 212],
  299. ['title' => '摩纳哥', 'english' => 'Monaco', 'code' => 377],
  300. ['title' => '文莱', 'english' => 'Brunei Darussalam', 'code' => 673],
  301. ['title' => '斐济', 'english' => 'Fiji', 'code' => 679],
  302. ['title' => '斯威士兰王国', 'english' => 'The Kingdom of Swaziland', 'code' => 268],
  303. ['title' => '斯洛伐克', 'english' => 'Slovakia', 'code' => 421],
  304. ['title' => '斯洛文尼亚', 'english' => 'Slovenia', 'code' => 386],
  305. ['title' => '斯里兰卡', 'english' => 'Sri Lanka', 'code' => 94],
  306. ['title' => '新加坡', 'english' => 'Singapore ', 'code' => 65],
  307. ['title' => '新喀里多尼亚', 'english' => 'New Caledonia', 'code' => 687],
  308. ['title' => '新西兰', 'english' => 'New Zealand', 'code' => 64],
  309. ['title' => '日本', 'english' => 'Japan', 'code' => 81],
  310. ['title' => '智利', 'english' => 'Chile', 'code' => 56],
  311. ['title' => '朝鲜', 'english' => 'Korea, North', 'code' => 850],
  312. ['title' => '柬埔寨 ', 'english' => 'Cambodia', 'code' => 855],
  313. ['title' => '格林纳达', 'english' => 'Grenada', 'code' => 1473],
  314. ['title' => '格陵兰', 'english' => 'Greenland', 'code' => 299],
  315. ['title' => '格鲁吉亚', 'english' => 'Georgia', 'code' => 995],
  316. ['title' => '比利时', 'english' => 'Belgium', 'code' => 32],
  317. ['title' => '毛里塔尼亚', 'english' => 'Mauritania', 'code' => 222],
  318. ['title' => '毛里求斯', 'english' => 'Mauritius', 'code' => 230],
  319. ['title' => '汤加', 'english' => 'Tonga', 'code' => 676],
  320. ['title' => '沙特阿拉伯', 'english' => 'Saudi Arabia', 'code' => 966],
  321. ['title' => '法国', 'english' => 'France', 'code' => 33],
  322. ['title' => '法属圭亚那', 'english' => 'French Guiana', 'code' => 594],
  323. ['title' => '法属波利尼西亚', 'english' => 'French Polynesia', 'code' => 689],
  324. ['title' => '法属西印度群岛', 'english' => 'french west indies', 'code' => 596],
  325. ['title' => '法罗群岛', 'english' => 'Faroe Islands', 'code' => 298],
  326. ['title' => '波兰', 'english' => 'Poland', 'code' => 48],
  327. ['title' => '波多黎各', 'english' => 'The Commonwealth of Puerto Rico', 'code' => 17871939],
  328. ['title' => '波黑', 'english' => 'Bosnia and Herzegovina ', 'code' => 387],
  329. ['title' => '泰国', 'english' => 'Thailand', 'code' => 66],
  330. ['title' => '津巴布韦', 'english' => 'Zimbabwe', 'code' => 263],
  331. ['title' => '洪都拉斯', 'english' => 'Honduras', 'code' => 504],
  332. ['title' => '海地', 'english' => 'Haiti', 'code' => 509],
  333. ['title' => '澳大利亚', 'english' => 'Australia', 'code' => 61],
  334. ['title' => '澳门', 'english' => 'Macao', 'code' => 853],
  335. ['title' => '爱尔兰', 'english' => 'Ireland', 'code' => 353],
  336. ['title' => '爱沙尼亚', 'english' => 'Estonia', 'code' => 372],
  337. ['title' => '牙买加 ', 'english' => 'Jamaica', 'code' => 1876],
  338. ['title' => '特克斯和凯科斯群岛', 'english' => 'Turks and Caicos Islands', 'code' => 1649],
  339. ['title' => '特立尼达和多巴哥', 'english' => 'Trinidad and Tobago', 'code' => 1868],
  340. ['title' => '玻利维亚', 'english' => 'Bolivia', 'code' => 591],
  341. ['title' => '瑙鲁', 'english' => 'Nauru', 'code' => 674],
  342. ['title' => '瑞典', 'english' => 'Sweden', 'code' => 46],
  343. ['title' => '瑞士', 'english' => 'Switzerland', 'code' => 41],
  344. ['title' => '瓜德罗普', 'english' => 'Guadeloupe', 'code' => 590],
  345. ['title' => '瓦利斯和富图纳群岛', 'english' => 'Wallis et Futuna', 'code' => 681],
  346. ['title' => '瓦努阿图', 'english' => 'Vanuatu', 'code' => 678],
  347. ['title' => '留尼汪 ', 'english' => 'Reunion', 'code' => 262],
  348. ['title' => '白俄罗斯', 'english' => 'Belarus', 'code' => 375],
  349. ['title' => '百慕大', 'english' => 'Bermuda', 'code' => 1441],
  350. ['title' => '直布罗陀', 'english' => 'Gibraltar', 'code' => 350],
  351. ['title' => '福克兰群岛', 'english' => 'Falkland', 'code' => 500],
  352. ['title' => '科威特', 'english' => 'Kuwait', 'code' => 965],
  353. ['title' => '科摩罗和马约特', 'english' => 'Comoros', 'code' => 269],
  354. ['title' => '科特迪瓦', 'english' => 'Cote d’Ivoire', 'code' => 225],
  355. ['title' => '秘鲁', 'english' => 'Peru', 'code' => 51],
  356. ['title' => '突尼斯', 'english' => 'Tunisia', 'code' => 216],
  357. ['title' => '立陶宛', 'english' => 'Lithuania', 'code' => 370],
  358. ['title' => '索马里', 'english' => 'Somalia', 'code' => 252],
  359. ['title' => '约旦', 'english' => 'Jordan', 'code' => 962],
  360. ['title' => '纳米比亚', 'english' => 'Namibia', 'code' => 264],
  361. ['title' => '纽埃岛', 'english' => 'Island of Niue', 'code' => 683],
  362. ['title' => '缅甸  ', 'english' => 'Burma', 'code' => 95],
  363. ['title' => '罗马尼亚', 'english' => 'Romania', 'code' => 40],
  364. ['title' => '美国', 'english' => 'United States of America', 'code' => 1],
  365. ['title' => '美属维京群岛', 'english' => 'Virgin Islands', 'code' => 1340],
  366. ['title' => '美属萨摩亚', 'english' => 'American Samoa', 'code' => 1684],
  367. ['title' => '老挝', 'english' => 'Laos', 'code' => 856],
  368. ['title' => '肯尼亚', 'english' => 'Kenya', 'code' => 254],
  369. ['title' => '芬兰', 'english' => 'Finland', 'code' => 358],
  370. ['title' => '苏丹', 'english' => 'Sudan', 'code' => 249],
  371. ['title' => '苏里南', 'english' => 'Suriname', 'code' => 597],
  372. ['title' => '英国', 'english' => 'United Kingdom', 'code' => 44],
  373. ['title' => '英属维京群岛', 'english' => 'British Virgin Islands', 'code' => 1284],
  374. ['title' => '荷兰', 'english' => 'Netherlands', 'code' => 31],
  375. ['title' => '荷属安的列斯', 'english' => 'Netherlands Antilles', 'code' => 599],
  376. ['title' => '莫桑比克', 'english' => 'Mozambique', 'code' => 258],
  377. ['title' => '莱索托', 'english' => 'Lesotho', 'code' => 266],
  378. ['title' => '菲律宾', 'english' => 'Philippines', 'code' => 63],
  379. ['title' => '萨尔瓦多', 'english' => 'El Salvador', 'code' => 503],
  380. ['title' => '萨摩亚', 'english' => 'Samoa', 'code' => 685],
  381. ['title' => '葡萄牙', 'english' => 'Portugal', 'code' => 351],
  382. ['title' => '蒙古', 'english' => 'Mongolia', 'code' => 976],
  383. ['title' => '西班牙', 'english' => 'Spain', 'code' => 34],
  384. ['title' => '贝宁', 'english' => 'Benin', 'code' => 229],
  385. ['title' => '赞比亚', 'english' => 'Zambia', 'code' => 260],
  386. ['title' => '赤道几内亚', 'english' => 'Equatorial Guinea', 'code' => 240],
  387. ['title' => '越南', 'english' => 'Vietnam', 'code' => 84],
  388. ['title' => '阿塞拜疆', 'english' => 'Azerbaijan', 'code' => 994],
  389. ['title' => '阿富汗', 'english' => 'Afghanistan', 'code' => 93],
  390. ['title' => '阿尔及利亚', 'english' => 'Algeria', 'code' => 213],
  391. ['title' => '阿尔巴尼亚', 'english' => 'Albania', 'code' => 355],
  392. ['title' => '阿拉伯联合酋长国', 'english' => 'United Arab Emirates', 'code' => 971],
  393. ['title' => '阿曼', 'english' => 'Oman', 'code' => 968],
  394. ['title' => '阿根廷', 'english' => 'Argentina', 'code' => 54],
  395. ['title' => '阿鲁巴', 'english' => 'Aruba', 'code' => 297],
  396. ['title' => '韩国', 'english' => 'Korea, South)', 'code' => 82],
  397. ['title' => '香港', 'english' => 'Hong Kong(SAR)', 'code' => 852],
  398. ['title' => '马其顿', 'english' => 'Macedonia', 'code' => 389],
  399. ['title' => '马尔代夫', 'english' => 'Maldives  ', 'code' => 960],
  400. ['title' => '马拉维', 'english' => ' Malawi', 'code' => 265],
  401. ['title' => '马来西亚', 'english' => 'Malaysia', 'code' => 60],
  402. ['title' => '马绍尔群岛', 'english' => 'Marshall Islands', 'code' => 692],
  403. ['title' => '马耳他', 'english' => 'Malta', 'code' => 356],
  404. ['title' => '马达加斯加', 'english' => 'Madagascar', 'code' => 261],
  405. ['title' => '马里', 'english' => 'Mali', 'code' => 223],
  406. ['title' => '黎巴嫩', 'english' => 'Lebanon', 'code' => 961],
  407. ['title' => '黑山共和国', 'english' => 'The Republic of Montenegro', 'code' => 382],
  408. ];
  409. }
  410. }