ChmpxServer Class ChmpxServer::__destruct

ChmpxServer::__construct

ChmpxServerインスタンスを作成する。

説明

public function __construct($handle) {}

新しいChmpxServerオブジェクトを作成します。

パラメータ

php -r '
> $handle = chmpxpx_create_server("./tests/server.yaml", true);
> $svrobj = new ChmpxServer($handle);
> var_dump($svrobj);
> chmpxpx_destroy($handle);
'

上の例の出力は以下となります。

object(ChmpxServer)#1 (3) {
  ["chmpx_handle"]=>
  resource(4) of type (chmpx_handle)
  ["chmpx_pkt_handle"]=>
  resource(5) of type (chmpx_pkt_handle)
}

参考

ChmpxServer Class ChmpxServer::__destruct