Table of Contents
php implements webservice instance, phpwebservice instance
Instance reference of how to call webservice in PHP_PHP tutorial
Home Backend Development PHP Tutorial PHP implements webservice instance, phpwebservice instance_PHP tutorial

PHP implements webservice instance, phpwebservice instance_PHP tutorial

Jul 13, 2016 am 10:14 AM
php webservice

php implements webservice instance, phpwebservice instance

The example in this article describes how to implement webservice in PHP. Share it with everyone for your reference. The specific implementation method is as follows:

First of all, everyone needs to briefly understand what webservice is. Next, we will give two very simple examples. Webservice still cannot escape the server side and client side.

The test environment here is: apache2.2.11 php5.2.10

Before doing this test, make sure that the soap extension has been turned on in your php configuration file, that is,

Copy code The code is as follows:
extension=php_soap.dll;

OK now let’s experience webservice

server side serverSoap.php

Copy code The code is as follows:
$soap = new SoapServer(null,array('uri'=>"http://192.168.1.179 /"));//This uri is your SERVER ip.
$soap->addFunction('minus_func'); $soap->addFunction(SOAP_FUNCTIONS_ALL);
$soap->handle();
function minus_func($i, $j){
$res = $i - $j;
Return $res;
}
//client side clientSoap.php
try {
$client = new SoapClient(null,
array('location' =>"http://192.168.1.179/test/serverSoap.php",'uri' => "http://127.0.0.1/")
);
echo $client->minus_func(100,99);
} catch (SoapFault $fault){
echo "Error: ",$fault->faultcode,", string: ",$fault->faultstring;
}
This is an example of the client calling a server-side function. Let’s create a class.
server side serverSoap.php


Copy code The code is as follows:
$classExample = array();
$soap = new SoapServer(null,array('uri'=>"http://192.168.1.179/",'classExample'=>$classExample));
$soap->setClass('chesterClass');
$soap->handle();
class chesterClass {
Public $name = 'Chester';
Function getName() {
          return $this->name;
}
}
//client side clientSoap.php
try {
$client = new SoapClient(null,
array('location' =>"http://192.168.1.179/test/serverSoap.php",'uri' => "http://127.0.0.1/")
);
echo $client->getName();
} catch (SoapFault $fault){
echo "Error: ",$fault->faultcode,", string: ",$fault->faultstring;
}
I hope this article will be helpful to everyone’s PHP programming design.

Who can give an example of php webservice

Web Service was created for the communication of heterogeneous systems. Its basic idea is to use XML-based HTTP remote calls to provide a standard mechanism, eliminating the need to establish a new protocol. Currently, there are two protocol standards for Web Service communication, one is XML-RPC and the other is SOAP. XML-RPC is relatively simple and appeared earlier, while SOAP is more complex and is mainly used when stability, robustness, security and complex interactions are required.

PHP integrates access to two protocols, XML-RPC and SOAP, both of which are concentrated in the xmlrpc extension. In addition, in PHP's PEAR, whether it is PHP 4 or PHP 5, the XML-RPC extension has been integrated by default, and this extension has nothing to do with the xmlrpc extension and can independently implement XML-RPC protocol interaction. If there is no xmlrpc extension, it is recommended Use the PEAR::XML-RPC extension.

No matter how much you say, it is all false. The following example illustrates everything.

First construct the server side of the webservice:

On the server side, the function I defined is get( "helloworld" );//hello is the incoming parameter

< ;?php
/**
* Function: Function provided to the RPC client to call
* Parameters:
* $method Function that the client needs to call
* $params Needed by the client Parameter array of the called function
* Return: Return the specified call result
*/
function rpc_server_func($method, $params) {
$parameter = $params[0];//pass in Function name

$parameter1 = $params[1];//Incoming parameters
if ($parameter == "get")
{
$return = "This data by get method".$parameter1 ;
}
else
{
$return = "Not specify method or params";
}
return $return;
}

//Generate an XML-RPC server
$xmlrpc_server = xmlrpc_server_create();

//Register a method rpc_server called by the server, which actually points to the rpc_server_func function
xmlrpc_server_register_method($xmlrpc_server, "rpc_server", "rpc_server_func");

//Accept the XML data POST from the client
$request = $HTTP_RAW_POST_DATA;

//Execute the call Get the execution result after the client's XML request
$xmlrpc_response = xmlrpc_server_call_method($xmlrpc_server, $request, null);

//Output the result XML after function processing
header("Content- Type: text/xml");
echo $xmlrpc_response;

//Destroy XML-RPC server-side resources
xmlrpc_server_destroy($xmlrpc_server);
?>

Use php to access the defined webse...the rest of the text>>

Instance reference of how to call webservice in PHP_PHP tutorial

The code is indeed very simple. When creating a SoapClient object, you can use a WSDL file saved locally or a remote address. The following array can contain many parameters. For specific parameters, you can check the SoapClient help of PHP. What is included here is the character set encoding. If there are Chinese characters in the parameters of the calling method, the character set encoding must be specified, otherwise an error will occur.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/907286.htmlTechArticlephp implements webservice examples, phpwebservice examples This article describes how php implements webservices. Share it with everyone for your reference. The specific implementation method is as follows: First of all, everyone must be simple...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles