我需要一个显示用户国家的tld的php脚本。例如,如果用户来自英国,那么我需要输出"uk“,或者如果他是德国人,我需要"de”代表奥地利"at“代表美国"us”等等。
你可以在wordcreator.org上看。应该是用户的国家/地区TLD,而不是".de“。在行是".yourCountry",".com",".net",".org“等等。
发布于 2017-05-13 23:54:15
哇,这太简单了!
<?php $location = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$_SERVER['REMOTE_ADDR'])); print_r($location) ?>安装手册:Here
https://stackoverflow.com/questions/43949997
复制相似问题