Apr232012
发布个查询手机归属地的API
查询手机归属地的API
<?php
//调用方式域名后加上 ?mobile=13006764649
function Mobile_Ownership($Mobile) {
if (! empty ( $Mobile )) {
$Url = 'http://www.ip138.com:8080/search.asp?mobile=' . $Mobile . '&action=mobile';
$Result = file_get_contents ( $Url );
$start_str = strpos ( $Result, '<TABLE width=349 border="1"' );
$end_str = strrpos ( ...阅读全文
抢沙发