Horde_Imap_Client_Base_Debug::__construct PHP 메소드

__construct() 공개 메소드

Constructor.
public __construct ( mixed $debug )
$debug mixed The debug target.
    public function __construct($debug)
    {
        $this->_stream = is_resource($debug) ? $debug : @fopen($debug, 'a');
        register_shutdown_function(array($this, 'shutdown'));
    }