Yar_Server::__construct

(PECL yar >= 1.0.0)

Yar_Server::__construct����һ��HTTP RPC Server

˵��

final public Yar_Server::__construct ( Object $obj )

����һ��Yar��HTTP RPC���񣬲��� $obj ��������й����������ᱻע��Ϊ�������� ���Ա�RPC���á�

����

obj

һ������ʵ��, �����������й����������ᱻע��Ϊ������.

����ֵ

����һ��Yar_Server��ʵ����

����

Example #1 Yar_Server::__construct()ʾ��

<?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();
?>

�������̵���������ڣ�

�μ�