Yar_Server::handle

(PECL yar >= 1.0.0)

Yar_Server::handle啟動HTTP RPC Server

說明

public Yar_Server::handle(): boolean

啟動服務(wù), 開始接受客戶端的調(diào)用請求.

注意:

來自客戶端的調(diào)用, 都是通過POST請求發(fā)送過來的. 如果一個GET請求訪問到這個Server, 那在yar.expose_info開啟的情況下, 這個服務(wù)的Server Info信息會被展現(xiàn).

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

boolean

范例

示例 #1 Yar_Server::handle()示例

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

    protected function 
client_can_not_see() {
    }
}

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

以上例程的輸出類似于:

參見