XmlRpc/Client/ServerIntrospection.php
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 [email protected] so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_XmlRpc
- Subpackage
- Client
- Version
- $Id: ServerIntrospection.php 24593 2012-01-05 20:35:02Z matthew $
\Zend_XmlRpc_Client_ServerIntrospection
Wraps the XML-RPC system.* introspection methods
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties
Methods

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

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

getSignatureForEachMethod() : arrayReturns 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) : arrayGet the method signatures for every method by successively calling system.methodSignature
| Name | Type | Description |
|---|---|---|
| $methods | array |
| Type | Description |
|---|---|
| array |

getSignatureForEachMethodByMulticall(array $methods = null) : arrayAttempt 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...)) |