Yar_Server::__construct

(PECL yar >= 1.0.0)

Yar_Server::__constructRegister a server

Description

finalpublicYar_Server::__construct(Object$obj)

Set up a Yar HTTP RPC Server, All the public methods of $obj will be register as a RPC service.

Parameters

obj

An Object, all public methods of its will be registered as RPC services.

Return Values

An instance of Yar_Server.

Examples

Example #1 Yar_Server::__construct() example

<?php
class API {

public function some_method($parameter, $option = "foo") {
return
"some_method";
}

protected function
client_can_not_see() {
}
}

$service = new Yar_Server(new API());
$service->handle();
?>

The above example will output something similar to:

See Also

To Top