PHP之cURL實現手機號碼歸屬地查詢功能

來源:互聯網
上載者:User
本文主要和大家分享PHP之cURL實現手機號碼歸屬地查詢功能,希望能協助到大家。

1、代碼如下:

index.html

<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width,initial-scale=1.0"><title>手機號碼歸屬地查詢</title><style type="text/css">*{margin: 0;padding: 0;border: 0;}body{font-family: 微軟雅黑;width: 100%;background-color: #f8f8f8}form input{ outline: none;font-family: 微軟雅黑;font-size: 16px;transition: all .5s ease;}form input:focus {border-color: rgba(82, 168, 236, 0.8);outline: thin dotted \9;box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);}p{text-align: center;padding: 10 0 0 0;}.query_phone{width: 90%;height: 40px;padding-left: 5%;/*設定placeholder的位置*/}.submit{width: 90%;height: 50px;color: #fff;font-size: 16px;background-color: rgb(97,178,220);transition: all .5s ease;font-family: 微軟雅黑;}.submit:hover{background-color: rgb(97,178,255);}/*input placeholder樣式*/:-moz-placeholder { /* Mozilla Firefox 4 to 18 */    opacity:.5; }::-moz-placeholder { /* Mozilla Firefox 19+ */    opacity:.5;}input:-ms-input-placeholder{    opacity:.5;}input::-webkit-input-placeholder{    opacity:.5;}input::-webkit-input-placeholder {  /* WebKit browsers*/ }input:-moz-placeholder {  /* Mozilla Firefox 4 to 18*/ }input::-moz-placeholder {  /* Mozilla Firefox 19+*/ }input:-ms-input-placeholder { /* Internet Explorer 10+*/ }</style><script type="text/javascript">function checkMobile(){var sMobile = document.mobileform.phone.value.trim();if(!(/^1[3|4|5|6|7|8|9][0-9]{5,9}$/.test(sMobile))){alert("不是完整的11位手機號或者正確的手機號前七位");document.mobileform.phone.focus();return false;}}</script></head><body><form class="phone_check_form" name="mobileform" method="get" action="query_phone.php" onsubmit="return checkMobile()";><p><input class="query_phone" name="phone" type="text"/ required="" placeholder="13414503051" maxlength="11"></p><p><input class="submit" name="submit" type="submit" value="查詢"/></p><p align="center" style="font-size: 12px;margin-top: 50px;">by Vegeta</p></form></body></html>

query_phone.php

<meta charset="utf-8"><?php    header("Content-type:text/html,charset=utf8");     include('simple_html_dom.php');    function query($phone='')    {        $url='http://www.ip138.com:8080/search.asp?action=mobile&mobile='.$phone;        $ch = curl_init();        $timeout = 5;          curl_setopt ($ch, CURLOPT_URL, $url);          curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);          curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");          curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);          curl_setopt ($ch, CURLOPT_REFERER, 'http://www.cltt.org/studentscore');          $contents = curl_exec($ch);          $contents = mb_convert_encoding($contents, 'utf-8', 'GBK,gb18030,gb2312');        curl_close($ch);        return $contents;    }    function simple($phone='')    {        $contents = query($phone);        $html = new simple_html_dom();        $html ->load($contents);        $arrMsg = array();                  foreach($html->find('table tbody tr td') as $m) {            array_push($arrMsg,$m->plaintext);        }        return $arrMsg;    }    $ph=$_GET["phone"];    var_dump(simple($ph));?>

simple_html_dom.php

需要下載php解析html類庫:simple_html_dom.php

2、效果



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.