What is WebService?
Simply see that your site can use the resources of other sites.
Use:
Modify PHP config file to open Extension=php_soap.dll
Here is a specific use:
http://webservice.webxml.com.cn/webservices/mobilecodews.asmx?wsdl
Using code:
<?php//uses SoapClient to request the WebService Server//through WSDL to understand WebService callable methods and details of the WSDL specification $soapclient = new SoapClient (" Http://webservice.webxml.com.cn/webservices/mobilecodews.asmx?wsdl ");/*print_r ($soapclient, __getfunctions ( )); Analyze what methods webservice can invoke to run the result array ( [0] = Getmobilecodeinforesponse getmobilecodeinfo (getmobilecodeinfo $ Parameters) [1] = Getdatabaseinforesponse getdatabaseinfo (getdatabaseinfo $parameters) [2] = = Getmobilecodeinforesponse Getmobilecodeinfo (getmobilecodeinfo $parameters) [3] = Getdatabaseinforesponse GetDatabaseInfo (GetDatabaseInfo $parameters)) *//*print_r ($soapclient-getmobilecodeinfo (Array (' mobilecode ' = >18790529086)); Operation Result: StdClass Object ([Getmobilecodeinforesult] + 18790529086: Henan Xinxiang Henan Mobile Global Pass Card) */
Introduction to the use of others webservice