disconnect() 공개 메소드

Disconnect from socket.
public disconnect ( ) : boolean
리턴 boolean
예제 #1
0
 public function testDisconnect()
 {
     $http = new Http($this->_testConfig);
     $result = $http->connect();
     $this->assertTrue($result);
     $result = $http->disconnect();
     $this->assertTrue($result);
 }