(PECL yar >= 1.0.0)
Yar_Client::__call — Call service
public Yar_Client::__call ( string $method , array $parameters ) : void
Issue a call to remote RPC method.
method
Remote RPC method name.
parameters
Parameters.
Example #1 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:
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/yar-client.call.php