php webservice实例

  • 格式:pdf
  • 大小:162.23 KB
  • 文档页数:4

php webservice实例

这是一篇关于php webservice实例的文章,下面就让我们一起来了解一

下吧。

 首先大家要简单了解了何谓webservice,接下来就做两个非常简单的例

子,webservice还是逃不开server端与client端。

 我测试的环境为:apache2.2.11 php5.2.10

 做这个测试之前,要确认你的php配置文件中已经将soap扩展打开,即

extension=php_soap.dll;

 OK 现在我们来体验webservice

 //server端serverSoap.php

 $soap=newSoapServer(null,array(‘uri’=>;”192.168.1.179/”));//This uri is your

SERVER ip.

 $soap->;addFunction(‘minus_func’);//Register the function

 $soap->;addFunction(SOAP_FUNCTIONS_ALL);