Yar_Client::setOpt

(PECL yar >= 1.0.0)

Yar_Client::setOptEstablecer los contextos de una llamada

Descripción

public Yar_Client::setOpt ( number $name , mixed $value ) : boolean

Parámetros

name

El nombre. Puede ser: YAR_OPT_PACKAGER, YAR_OPT_PERSISTENT (necesita de soporte en el servidor), YAR_OPT_TIMEOUT, YAR_OPT_CONNECT_TIMEOUT

value

Valores devueltos

Ejemplos

Ejemplo #1 Ejemplo de Yar_Client::setOpt()

<?php

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

//Establecer el tiempo de espera a 1s
$cliente->SetOpt(YAR_OPT_CONNECT_TIMEOUT1000);

//Establecer el empaquetador a JSON
$cliente->SetOpt(YAR_OPT_PACKAGER"json");

/* llamar al servicio remoto */
$result $cliente->some_method("parameter");
?>

El resultado del ejemplo sería algo similar a:

Ver también