pharext\Archive::outFd PHP Method

outFd() private method

private outFd ( $path, $flags )
    private function outFd($path, $flags)
    {
        $dirn = dirname($path);
        if (!is_dir($dirn) && !@mkdir($dirn, 0777, true)) {
            throw new Exception();
        }
        if (!($fd = @fopen($path, "w"))) {
            throw new Exception();
        }
        switch ($flags & self::COMP_FILE_MASK) {
            case self::COMP_GZ_FILE:
                if (!@stream_filter_append($fd, "zlib.inflate")) {
                    throw new Exception();
                }
                break;
            case self::COMP_BZ2_FILE:
                if (!@stream_filter_append($fd, "bz2.decompress")) {
                    throw new Exception();
                }
                break;
        }
    }