XmlRpc Request object

Encapsulates an XmlRpc request, holding the method call and all parameters. Provides accessors for these, as well as the ability to load from XML and to create the XML request string.

Additionally, if errors occur setting the method or parsing XML, a fault is generated and stored in \$_fault; developers may check for it using \isFault() and \getFault().

category Zend
package Zend_XmlRpc
copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
license New BSD License
version $Id$

 Methods

Create a new XML-RPC request

__construct(string $method = null, array $params = null

Parameters

$method

string

(optional)

$params

array

(optional)

Return XML request

__toString() : string

Returns

string

Add a parameter to the parameter stack

addParam(mixed $value, string $type = null) : void

Adds a parameter to the parameter stack, associating it with the type $type if provided

Parameters

$value

mixed

$type

string

Optional; type hinting

Retrieve current request encoding

getEncoding() : string

Returns

string

Retrieve the fault response, if any

getFault() : null | \Zend_XmlRpc_Fault

Returns

null\Zend_XmlRpc_Fault

Retrieve call method

getMethod() : string

Returns

string

Retrieve the array of parameters

getParams() : array

Returns

array

Return parameter types

getTypes() : array

Returns

array

Does the current request contain errors and should it return a fault response?

isFault() : boolean

Returns

boolean

Load XML and parse into request components

loadXml(string $request) : boolean

Parameters

$request

string

Returns

booleanTrue on success, false if an error occurred.

Create XML request

saveXml() : string

Returns

string

Set encoding to use in request

setEncoding(string $encoding) : \Zend_XmlRpc_Request

Parameters

$encoding

string

Returns

\Zend_XmlRpc_Request

Set method to call

setMethod(string $method) : boolean

Parameters

$method

string

Returns

booleanReturns true on success, false if method name is invalid

Set the parameters array

setParams() : void

If called with a single, array value, that array is used to set the parameters stack. If called with multiple values or a single non-array value, the arguments are used to set the parameters stack.

Best is to call with array of the format, in order to allow type hinting when creating the XMLRPC values for each parameter: $array = array( array( 'value' => $value, 'type' => $type )[, ... ] );

access public

Retrieve method parameters as XMLRPC values

_getXmlRpcParams() : array

Returns

array

 Properties

 

Request character encoding

$_encoding : string

Default

'UTF-8'
 

Fault object, if any

$_fault : \Zend_XmlRpc_Fault

Default

null
 

Method to call

$_method : string

Default

 

Method parameters

$_params : array

Default

array()
 

XML-RPC type for each param

$_types : array

Default

array()
 

XML request

$_xml : string

Default

 

XML-RPC request params

$_xmlRpcParams : array

Default

array()