summaryrefslogtreecommitdiff
path: root/ext/zlib/zlib.stub.php
blob: 8f4ba12c7964c6b3ed322875d1df2c8a80f0267b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php

/** @generate-function-entries */

final class InflateContext
{
}

final class DeflateContext
{
}

function ob_gzhandler(string $data, int $flags): string|false {}

function zlib_get_coding_type(): string|false {}

function gzfile(string $filename, int $use_include_path = 0): array|false {}

/** @return resource|false */
function gzopen(string $filename, string $mode, int $use_include_path = 0) {}

function readgzfile(string $filename, int $use_include_path = 0): int|false {}

function zlib_encode(string $data, int $encoding, int $level = -1): string|false {}

function zlib_decode(string $data, int $max_decoded_len = 0): string|false {}

function gzdeflate(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_RAW): string|false {}

function gzencode(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_GZIP): string|false {}

function gzcompress(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_DEFLATE): string|false {}

function gzinflate(string $data, int $max_decoded_len = 0): string|false {}

function gzdecode(string $data, int $max_decoded_len = 0): string|false {}

function gzuncompress(string $data, int $max_decoded_len = 0): string|false {}

/**
 * @param resource $fp
 * @alias fwrite
 */
function gzwrite($fp, string $str, int $length = UNKNOWN): int|false {}

/**
 * @param resource $fp
 * @alias fwrite
 */
function gzputs($fp, string $str, int $length = UNKNOWN): int|false {}

/**
 * @param resource $fp
 * @alias rewind
 */
function gzrewind($fp): bool {}

/**
 * @param resource $fp
 * @alias fclose
 */
function gzclose($fp): bool {}

/**
 * @param resource $fp
 * @alias feof
 */
function gzeof($fp): bool {}

/**
 * @param resource $fp
 * @alias fgetc
 */
function gzgetc($fp): string|false {}

/**
 * @param resource $fp
 * @alias fpassthru
 */
function gzpassthru($fp): int {}

/**
 * @param resource $fp
 * @alias fseek
 */
function gzseek($fp, int $offset, int $whence = SEEK_SET): int {}

/**
 * @param resource $fp
 * @alias ftell
 */
function gztell($fp): int|false {}

/**
 * @param resource $fp
 * @alias fread
 */
function gzread($fp, int $length): string|false {}

/**
 * @param resource $fp
 * @alias fgets
 */
function gzgets($fp, int $length = 1024): string|false {}

function deflate_init(int $encoding, array $options = []): DeflateContext|false {}

function deflate_add(DeflateContext $context, string $add, int $flush_behavior = ZLIB_SYNC_FLUSH): string|false {}

function inflate_init(int $encoding, array $options = []): InflateContext|false {}

function inflate_add(InflateContext $context, string $encoded_data, int $flush_mode = ZLIB_SYNC_FLUSH): string|false {}

function inflate_get_status(InflateContext $context): int {}

function inflate_get_read_len(InflateContext $context): int {}