Copy the Code code as follows:
Header ("Content-type:text/html;charset=utf-8");
if (isset ($_get[' number ')) {
$url = ' Http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo ';
$number = $_get[' number '];
$ch = Curl_init ();
curl_setopt ($ch, Curlopt_url, $url);
curl_setopt ($ch, Curlopt_post, true);
curl_setopt ($ch, Curlopt_postfields, "mobilecode={$number}&userid=");
curl_setopt ($ch, Curlopt_returntransfer, true);
$data = curl_exec ($ch);
Curl_close ($ch);
$data = simplexml_load_string ($data);
if (Strpos ($data, '/http ')}) {
Echo ' Phone number format is wrong! ';
} else {
Echo $data;
}
}
?>
The above describes the Unicom mobile phone number attribution to query the PHP mobile phone attribution query API, including the Unicom mobile phone number attribution to the content of the query, I hope that the PHP tutorial interested in a friend helpful.