Class ServerProxy

Summary

Fully Qualified Name: Zend\XmlRpc\Client\ServerProxy

Description

The namespace decorator enables object chaining to permit calling XML-RPC namespaced functions like "foo.bar.baz()" as "$remote->foo->bar->baz()".

Methods

Name Description Defined By
__call() Call a method in this namespace. ServerProxy
__construct() Class constructor ServerProxy
__get() Get the next successive namespace ServerProxy

Method Details

__call()

Call a method in this namespace.

Parameter Name Type Description
$method string
$args array

Returns: mixed

__construct()

Class constructor

Parameter Name Type Description
$client \Zend\XmlRpc\Client
$namespace string

Returns:

__get()

Get the next successive namespace

Parameter Name Type Description
$namespace string

Returns: \Zend\XmlRpc\Client\ServerProxy

Top