forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp_zip.stub.php
254 lines (192 loc) · 7.31 KB
/
php_zip.stub.php
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
/** @generate-class-entries */
/**
* @return resource|int|false
* @deprecated
*/
function zip_open(string $filename) {}
/**
* @param resource $zip
* @deprecated
*/
function zip_close($zip): void {}
/**
* @param resource $zip
* @return resource|false
* @deprecated
*/
function zip_read($zip) {}
/**
* @param resource $zip_dp
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_open($zip_dp, $zip_entry, string $mode = "rb"): bool {}
/**
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_close($zip_entry): bool {}
/**
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_read($zip_entry, int $len = 1024): string|false {}
/**
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_name($zip_entry): string|false {}
/**
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_compressedsize($zip_entry): int|false {}
/**
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_filesize($zip_entry): int|false {}
/**
* @param resource $zip_entry
* @deprecated
*/
function zip_entry_compressionmethod($zip_entry): string|false {}
class ZipArchive implements Countable
{
/** @readonly */
public int $lastId;
/** @readonly */
public int $status;
/** @readonly */
public int $statusSys;
/** @readonly */
public int $numFiles;
/** @readonly */
public string $filename;
/** @readonly */
public string $comment;
/** @tentative-return-type */
public function open(string $filename, int $flags = 0): bool|int {}
/**
* @tentative-return-type
*/
public function setPassword(#[\SensitiveParameter] string $password): bool {}
/** @tentative-return-type */
public function close(): bool {}
/** @tentative-return-type */
public function count(): int {}
/** @tentative-return-type */
public function getStatusString(): string {}
public function clearError(): void {}
/** @tentative-return-type */
public function addEmptyDir(string $dirname, int $flags = 0): bool {}
/** @tentative-return-type */
public function addFromString(string $name, string $content, int $flags = ZipArchive::FL_OVERWRITE): bool {}
/** @tentative-return-type */
public function addFile(string $filepath, string $entryname = "", int $start = 0, int $length = 0, int $flags = ZipArchive::FL_OVERWRITE): bool {}
/** @tentative-return-type */
public function replaceFile(string $filepath, int $index, int $start = 0, int $length = 0, int $flags = 0): bool {}
/** @tentative-return-type */
public function addGlob(string $pattern, int $flags = 0, array $options = []): array|false {}
/** @tentative-return-type */
public function addPattern(string $pattern, string $path = ".", array $options = []): array|false {}
/** @tentative-return-type */
public function renameIndex(int $index, string $new_name): bool {}
/** @tentative-return-type */
public function renameName(string $name, string $new_name): bool {}
/** @tentative-return-type */
public function setArchiveComment(string $comment): bool {}
/** @tentative-return-type */
public function getArchiveComment(int $flags = 0): string|false {}
/** @tentative-return-type */
public function setCommentIndex(int $index, string $comment): bool {}
/** @tentative-return-type */
public function setCommentName(string $name, string $comment): bool {}
#ifdef HAVE_SET_MTIME
/** @tentative-return-type */
public function setMtimeIndex(int $index, int $timestamp, int $flags = 0): bool {}
/** @tentative-return-type */
public function setMtimeName(string $name, int $timestamp, int $flags = 0): bool {}
#endif
/** @tentative-return-type */
public function getCommentIndex(int $index, int $flags = 0): string|false {}
/** @tentative-return-type */
public function getCommentName(string $name, int $flags = 0): string|false {}
/** @tentative-return-type */
public function deleteIndex(int $index): bool {}
/** @tentative-return-type */
public function deleteName(string $name): bool {}
/** @tentative-return-type */
public function statName(string $name, int $flags = 0): array|false {}
/** @tentative-return-type */
public function statIndex(int $index, int $flags = 0): array|false {}
/** @tentative-return-type */
public function locateName(string $name, int $flags = 0): int|false {}
/** @tentative-return-type */
public function getNameIndex(int $index, int $flags = 0): string|false {}
/** @tentative-return-type */
public function unchangeArchive(): bool {}
/** @tentative-return-type */
public function unchangeAll(): bool {}
/** @tentative-return-type */
public function unchangeIndex(int $index): bool {}
/** @tentative-return-type */
public function unchangeName(string $name): bool {}
/** @tentative-return-type */
public function extractTo(string $pathto, array|string|null $files = null): bool {}
/** @tentative-return-type */
public function getFromName(string $name, int $len = 0, int $flags = 0): string|false {}
/** @tentative-return-type */
public function getFromIndex(int $index, int $len = 0, int $flags = 0): string|false {}
/** @return resource|false */
public function getStreamIndex(int $index, int $flags = 0) {}
/** @return resource|false */
public function getStreamName(string $name, int $flags = 0) {}
/** @return resource|false */
public function getStream(string $name) {}
#ifdef ZIP_OPSYS_DEFAULT
/** @tentative-return-type */
public function setExternalAttributesName(string $name, int $opsys, int $attr, int $flags = 0): bool {}
/** @tentative-return-type */
public function setExternalAttributesIndex(int $index, int $opsys, int $attr, int $flags = 0): bool {}
/**
* @param int $opsys
* @param int $attr
* @tentative-return-type
*/
public function getExternalAttributesName(string $name, &$opsys, &$attr, int $flags = 0): bool {}
/**
* @param int $opsys
* @param int $attr
* @tentative-return-type
*/
public function getExternalAttributesIndex(int $index, &$opsys, &$attr, int $flags = 0): bool {}
#endif
/** @tentative-return-type */
public function setCompressionName(string $name, int $method, int $compflags = 0): bool {}
/** @tentative-return-type */
public function setCompressionIndex(int $index, int $method, int $compflags = 0): bool {}
#ifdef HAVE_ENCRYPTION
/**
* @tentative-return-type
*/
public function setEncryptionName(string $name, int $method, #[\SensitiveParameter] ?string $password = null): bool {}
/**
* @tentative-return-type
*/
public function setEncryptionIndex(int $index, int $method, #[\SensitiveParameter] ?string $password = null): bool {}
#endif
#ifdef HAVE_PROGRESS_CALLBACK
/** @tentative-return-type */
public function registerProgressCallback(float $rate, callable $callback): bool {}
#endif
#ifdef HAVE_CANCEL_CALLBACK
/** @tentative-return-type */
public function registerCancelCallback(callable $callback): bool {}
#endif
#ifdef HAVE_METHOD_SUPPORTED
public static function isCompressionMethodSupported(int $method, bool $enc = true): bool {}
public static function isEncryptionMethodSupported(int $method, bool $enc = true): bool {}
#endif
}