1.開啓soap支持,在php.ini中去除extension=php_soap.dll以前的‘;’php
2.掉用頁面html
<?phpweb
header('Content-Type: text/html; charset=UTF-8');ide
$client = new SoapClient('http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?WSDL');xml
$parm=array('mobileCode'=>'13782149159','userID'=>'');htm
$result=$client->getMobileCodeInfo($parm);get
$result=get_object_vars($result); //將stdclass object轉換爲array,這個比較重要了webservice
echo "你的手機卡信息:".$result['getMobileCodeInfoResult'];it
?>io
就這麼簡單了。。