Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Wraps the XML-RPC system.* introspection methods

__construct(
\Zend_XmlRpc_Client $client
)
:
void
Name | Type | Description |
---|---|---|
$client | \Zend_XmlRpc_Client |

getMethodSignature(
array $method
)
:
array
Call system.methodSignature() for the given method
Name | Type | Description |
---|---|---|
$method | array |
Type | Description |
---|---|
array | array(array(return, param, param, param...)) |

getSignatureForEachMethod(
)
:
array
Returns the signature for each method on the server, autodetecting whether system.multicall() is supported and using it if so.
Type | Description |
---|---|
array |

getSignatureForEachMethodByLooping(
array $methods
=
null
)
:
array
Get the method signatures for every method by successively calling system.methodSignature
Name | Type | Description |
---|---|---|
$methods | array |
Type | Description |
---|---|
array |

getSignatureForEachMethodByMulticall(
array $methods
=
null
)
:
array
Attempt to get the method signatures in one request via system.multicall().
This is a boxcar feature of XML-RPC and is found on fewer servers. However, can significantly improve performance if present.
Name | Type | Description |
---|---|---|
$methods | array |
Type | Description |
---|---|
array | array(array(return, param, param, param...)) |