Yar_Client::__call

(PECL yar >= 1.0.0)
Call service
public void Yar_Client::__call ( string $method, array $parameters )

Issue a call to remote RPC method.

Parameters:
method

Remote RPC method name.

parameters

Parameters.

Returns:
Examples:
Yar_Client::__call() example
<?php

$client = new Yar_Client("http://host/api/");

/* call remote service */
$result = $client->some_method("parameter");
?>

The above example will output something similar to:

See also:

Yar_Client::setOpt() -

doc_php
2016-02-24 16:14:19
Comments
Leave a Comment

Please login to continue.