Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 URL 缩短网站。我想允许用户查看链接的统计信息。我计划做国家统计。我想我应该用一个类似于GeoIP的库来获取PHP的国家,但是,怎么可能是MySQL。我的弱点是 MySQL 表的设计。请给我推荐一个表格格式好吗?
一张桌子,比如:
id, fromip, toip, country
使用用于查询国家/地区的 IP 范围的数字格式。
另外: 如何存储和搜索 IP 地址
对于每个视图,我会使用正在查看的人的 ip、lat&long 或任何您想要用于跟踪的内容。也许有id, ip, lat, long, url。id 可以自动递增,ip、纬度和经度可能会结合起来为您提供准确的结果。只需从表中选择 URL 等于所需行的行,就可以了。(如果您想显示所有用户链接的统计信息,您也可以有一个“用户”列。)
id, ip, lat, long, url
它最适合我 http://www.ipinfodb.com/ip_location_api.php