Chmpx::getChmpxServer
ChmpxServerインスタンスを取得する
Description
public function getChmpxServer(): ChmpxServer|false {}
ChmpxServerインスタンスを取得します。
Parameters
Return Values
成功時はChmpxServerインスタンス。
Examples
php -r '$chmpx = new Chmpx(); $chmpx->createServer("./tests/server.yaml", true); var_dump($chmpx->getChmpxServer());'
上の例は、下のように出力されます。
object(ChmpxServer)#2 (3) {
["chmpx_handle"]=>
resource(8) of type (chmpx_handle)
["chmpx_pkt_handle"]=>
resource(9) of type (chmpx_pkt_handle)
["handle":"ChmpxServer":private]=>
int(-1)
}
See Also
- Chmpx::construct - Chmpxインスタンスを作成する
- Chmpx::destruct - Chmpxインスタンスを解放する
- Chmpx::createServer - ChmpxServerインスタンスを作成する