Php/docs/yar-client.call

提供:Dev Guides
< Php
移動先:案内検索

Yar_Client::__call

(PECL yar >= 1.0.0)

Yar_Client::__callCall service


説明

public Yar_Client::__call ( string $method , array $parameters ) : void

Issue a call to remote RPC method.


パラメータ

method
Remote RPC method name.
parameters
Parameters.


返り値

例1 Yar_Client::__call() example

<?php$client = new Yar_Client("http://host/api/%22);/* call remote service */$result = $client->some_method("parameter");?>

上の例の出力は、 たとえば以下のようになります。



参考