PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Yar_Server::__construct - Register a server | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Yar_Server::__construct

(PECL yar >= 1.0.0)

Yar_Server::__constructRegister a server

説明

final public Yar_Server::__construct ( Object $obj )

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

パラメータ

obj

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

返り値

An instance of Yar_Server.

例1 Yar_Server::__construct() example

<?php
class API {
    
/**
     * the doc info will be generated automatically into service info page.
     * @params 
     * @return
     */
    
public function some_method($parameter$option "foo") {
         return 
"some_method";
    }

    protected function 
client_can_not_see() {
    }
}

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

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

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Yar_Server::__construct - Register a server」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Yar_Server::__construct - Register a server」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: