


PHP implements webservice instance, phpwebservice instance_PHP tutorial
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,
OK now let’s experience webservice
server side serverSoap.php
$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;
}
server side serverSoap.php
$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;
}
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>>
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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
