本文介绍了如何在javascript或php中找出承运人的名字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要为访问我的网页的每个移动设备创建唯一的ID.我已经获得了用户的屏幕分辨率,浏览器,操作系统和位置,但我也想知道运营商的名称,以使其更加准确.
I need to create a unique id for every mobile device that access my webpage. I already got the user's screen resolution, browser, OS and location, but I also want to know the carrier's name to make it more accurate.
到目前为止,我有:
<script type="text/javascript" language="Javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" language="Javascript" src="http://api.easyjquery.com/easyjquery.js"></script>
<?PHP
$browsers = array ();
$osS = array ();
$tb_query=mysql_query("SELECT * FROM cst_unique_device_index");
while ($rw_query=mysql_fetch_array($tb_query)){
extract ($rw_query);
$variable = strtolower($variable);
if ($type == 2) $browsers[] = $variable;
}
$osS = array (
"android",
"bada",
"blackberry",
"brew",
"ios",
"lg",
"linux",
"motorola",
"nintendo",
"palm",
"playstation",
"samsung",
"series",
"sony",
"symbianos",
"unknown",
"webos",
"wince",
"windows");
$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
foreach($browsers as $browser)
{
if (preg_match("#($browser)[/ ]?([0-9.]*)#", $agent, $matchBrowser))
{
$user_browser = $matchBrowser[1] ;
$user_browser_version = $matchBrowser[2] ;
break ;
}
}
foreach($osS as $os)
{
if (preg_match("#($os)[/ ]?([a-z0-9.]*)#", $agent, $matchOS))
{
$user_os = $matchOS[1];
$user_os_version = $matchBrowser[2] ;
}
}
echo $agent .'<br />' ;
echo '
<table>
<tr>
<th>Screen: </th>
<td id="user_screen"></td>
<td></td>
</tr>
<tr>
<th>Browser: </th>
<td>' . $user_browser . '</td>
<td></td>
</tr>
<tr>
<th>OS: </th>
<td>' . $user_os . '</td>
<td></td>
</tr>
<tr>
<th>State: </th>
<td id="user_state"></td>
<td></td>
</tr>
<tr>
<th>Carrier: </th>
<td></td>
<td></td>
</tr>
';
?>
<script type="text/javascript" language="Javascript">
var screenWith = screen.width
var screenHeight = screen.height
document.getElementById('user_screen').innerHTML = screenWith+"x"+screenHeight;
// 1. Your Data Here
function my_callback(json) {
alert("IP :" + json.IP + " nCOUNTRY: " + json.COUNTRY);
}
function my_callback2(json) {
// more information at http://api.easyjquery.com/test/demo-ip.php
//alert("IP :" + json.IP + " nCOUNTRY: " + json.COUNTRY + " City: " + json.cityName + " regionName: " + json.regionName);
document.getElementById('user_state').innerHTML = json.cityName;
}
// 2. Setup Callback Function
// EasyjQuery_Get_IP("my_callback"); // fastest version
EasyjQuery_Get_IP("my_callback2","full"); // full version
</script>
推荐答案
如果您可以直接获取它,将是一个安全问题.浏览器在沙箱中运行,并且应该无法获取该数据.
It would be a security issue if you could get this directly. A browser runs in a sandbox and should not be able to get that data.
您可以记录IP地址并查找每个运营商的范围.我认为那将是一个明智的猜测.
You could log ip addresses and lookup the ranges of every carrier. That would be a smart guess I think.
您可以从例如 http://whois.arin.net/ui
AT&T
32.0.0.0 - 32.255.255.255
166.128.0.0 - 166.255.255.255
这篇关于如何在javascript或php中找出承运人的名字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!