Zend_Http_Client_Adapter_Socket::__destruct PHP 메소드

__destruct() 공개 메소드

If we are in persistent TCP mode, will not close the connection
public __destruct ( )
    public function __destruct()
    {
        if (!$this->config['persistent']) {
            if ($this->socket) {
                $this->close();
            }
        }
    }