Yar_Client::setOpt

(PECL yar >= 1.0.0)
Set calling contexts
public boolean Yar_Client::setOpt ( number $name, mixed $value )
Parameters:
name

it can be: YAR_OPT_PACKAGER, YAR_OPT_PERSISTENT (Need server support), YAR_OPT_TIMEOUT, YAR_OPT_CONNECT_TIMEOUT

value

it can be: YAR_OPT_PACKAGER, YAR_OPT_PERSISTENT (Need server support), YAR_OPT_TIMEOUT, YAR_OPT_CONNECT_TIMEOUT

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

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

//Set timeout to 1s
$client->SetOpt(YAR_OPT_CONNECT_TIMEOUT, 1000);

//Set packager to JSON
$client->SetOpt(YAR_OPT_PACKAGER, "json");

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

The above example will output something similar to:

See also:

Yar_Client::__call() -

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

Please login to continue.