(PECL yar >= 1.0.0)
Yar_Client::setOpt — Set calling contexts
public Yar_Client::setOpt ( int $name , mixed $value ) : Yar_Client|false
name
it can be: YAR_OPT_PACKAGER, YAR_OPT_PERSISTENT (Need server support), YAR_OPT_TIMEOUT, YAR_OPT_CONNECT_TIMEOUT YAR_OPT_HEADER (Since 2.0.4)
value
Returns $this on success or false
on failure.
Example #1 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"); //Set Custom headers $client->SetOpt(YAR_OPT_HEADER, array("hr1: val1", "hd2: val2")); /* 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.setopt.php