博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
webservice 简单示例代码
阅读量:5252 次
发布时间:2019-06-14

本文共 524 字,大约阅读时间需要 1 分钟。

index.php

服务端代码

'textphpwebservice','soap_version'=>SOAP_1_2));$wbServer->addFunction('sayhello');$wbServer->addFunction('mymin');$wbServer->handle();function sayhello($name){return "hello ".$name."you are great!"; }function mymin($a,$b){return $a>$b?$b:$a;}

 

client.php

客户端代码

'http://demo.web.com/index.php','uri'=>'textphpwebservice'));echo $client->sayhello("lijh")."";echo $client->mymin(100,50)."ccccc";}catch(SoapFault $fault){echo "fail";}die();

 

转载于:https://www.cnblogs.com/shaoyikai/articles/5961932.html

你可能感兴趣的文章
tju 1782. The jackpot
查看>>
HTML5与CSS3基础(五)
查看>>
linux脚本中有source相关命令时的注意事项
查看>>
湖南多校对抗赛(2015.03.28) H SG Value
查看>>
REST Web 服务(二)----JAX-RS 介绍
查看>>
hdu1255扫描线计算覆盖两次面积
查看>>
hdu1565 用搜索代替枚举找可能状态或者轮廓线解(较优),参考poj2411
查看>>
bzoj3224 splay板子
查看>>
程序存储问题
查看>>
Mac版OBS设置详解
查看>>
优雅地书写回调——Promise
查看>>
android主流开源库
查看>>
AX 2009 Grid控件下多选行
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>
让IE浏览器支持CSS3圆角属性的方法
查看>>
巡风源码阅读与分析---nascan.py
查看>>