PHP使用NuSOAP调用Web服务的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-06-13 13:49:41 浏览: 评论:0
这篇文章主要介绍了PHP使用NuSOAP调用Web服务的方法,涉及php实现web服务的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了PHP使用NuSOAP调用Web服务的方法。分享给大家供大家参考。具体如下:
Steps:
1. Download nusoap library from internet.
2. Pass parameter list in your $client->call and enjoy.
- <?php
- require_once('./lib/nusoap.php');
- $client = new soapclientnusoap('http://www.devtrackn.com/webservice/server.php');
- $err = $client->getError();
- if ($err) {
- // Display the error
- echo '<p><b>Constructor error: ' . $err . '</b></p>';
- // At this point, you know the call that follows will fail
- }
- ////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////
- // update_location method parameter
- $param = array(
- 'device_number' => '9910948357',
- 'latitude' => '40.727757',
- 'longitude' => '-73.984366',
- 'battery_status' => '30'
- );
- // user_action method parameter
- $param2 = array(
- 'device_number' => '27ab2026da5213ebd6c95e5fbe50965bdfaddf4b',
- 'latitude' => '40.727757',
- 'longitude' => '-73.984366',
- 'user_action' => 'Meeting_Test'
- );
- // sos method parameter
- $param3 = array(
- 'device_number' => '9910948357',
- 'latitude' => '40.727757',
- 'longitude' => '-73.984366',
- );
- //$result = $client->call('update_location', $param);
- //$result = $client->call('user_action', $param2);
- //$result = $client->call('sos', $param3);
- $result = $client->call('user_entity_status', array('device_number' => '27ab2026da5213ebd6c95e5fbe50965bdfaddf4b'));
- ////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////
- // Check for a fault
- if ($client->fault) {
- echo '<p><b>Fault: ';
- print_r($result);
- echo '</b></p>';
- } else {
- // Check for errors
- $err = $client->getError();
- if ($err) {
- // Display the error
- echo '<p><b>Error: ' . $err . '</b></p>';
- } else {
- // Display the result
- echo "<pre>";
- print_r($result);
- echo "</pre>";
- }
- }
- echo '<h2>Request</h2>';
- echo '<pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
- echo '<h2>Response</h2>';
- echo '<pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
- /*
- // Display the debug messages
- echo '<h2>Debug</h2>';
- echo '<pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
- */
- ?>
希望本文所述对大家的php程序设计有所帮助。
Tags: NuSOAP Web
相关文章
- ·php中nusoap调用java axis2发布的webservice(2014-08-26)
- ·NuSOAP 调用 Web Service 出现乱码的解决方法(2014-09-04)
- ·用PHP自动把纯文本转换成Web页面(2013-11-13)
- ·在apache 下建立高可扩展的web邮件系统实例(2014-01-21)
- ·从后台到webshell的一点思路(2014-03-07)
- ·WebQQ网页hash加密算法PHP版(2014-07-11)
- ·php soap 调用webservice应用测试(2014-07-23)
- ·PHP调用Webservice经典实例(2014-08-02)
- ·php webshell扫描后门木马实例程序(2014-08-22)
- ·php 调用 webservice 中文乱码解决方案(2014-09-06)
- ·WebQQ最新登陆协议的例子(2014-09-22)
- ·使用PHP内置web服务器的教程(2016-08-25)
- ·PHP聊天室_WebSocket技术实战(2016-08-25)
- ·php实现通过soap调用.Net的WebService asmx文件(2018-08-03)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)