English 中文(简体)
PHP图书馆,包含国家、州和城市 [关闭]
原标题:PHP library with Countries, States and Cities [closed]

要求我们< b>推荐或查找工具、库或外部资源的问题对于Stack Overflow来说是不相关的,因为它们往往会吸引带有个人意见的答案和垃圾邮件。相反,请描述问题和迄今为止为解决问题所做的工作。

Closed 8 years ago.

我目前正在开发一个 PHP 应用程序,迫切需要世界上所有国家、州和城市。

在应用程序中,当您从下拉菜单中选择一个国家时,它会将所选国家中的所有省/州加载到另一个下拉菜单中。然后,当您从新生成的下拉菜单中选择一个省份时,它会将所选省份中的所有城市加载到另一个下拉菜单中。

现在的挑战是获取所有的国家,州和城市。我试着在谷歌上搜索但没有结果。

我想知道是否有包含所有国家、州和城市的PHP库或应用程序,这样我就可以下载并扩展它。

非常感谢您的时间。

最佳回答

一个好的开始地方是使用免费提供的MaxMind.com数据库的 MaxMind PHP库

问题回答

GeoDataSource 世界城市数据库 (黄金版) 2010年3月版。 包括:

  • city database
  • latitude longitude
  • city latitude
  • cities database
  • world cities
  • global cities
  • world countries
  • distance calculator
  • state list
  • gazetteer
  • place names
  • populated places
  • GPS

而且,还有基本和高级套餐。

编辑

May not be worthwhile if your looking for something free however because the free package only offers city names. The basic package is One Month - $149.95 One Year - $449.95

而且这些套餐只会越来越贵。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签