forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgsql.stub.php
517 lines (395 loc) · 15 KB
/
pgsql.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<?php
/** @generate-class-entries */
namespace PgSql {
/**
* @strict-properties
* @not-serializable
*/
final class Connection
{
}
/**
* @strict-properties
* @not-serializable
*/
final class Result
{
}
/**
* @strict-properties
* @not-serializable
*/
final class Lob
{
}
}
namespace {
function pg_connect(string $connection_string, int $flags = 0): PgSql\Connection|false {}
function pg_pconnect(string $connection_string, int $flags = 0): PgSql\Connection|false {}
function pg_connect_poll(PgSql\Connection $connection): int {}
function pg_close(?PgSql\Connection $connection = null): bool {}
/** @refcount 1 */
function pg_dbname(?PgSql\Connection $connection = null): string {}
function pg_last_error(?PgSql\Connection $connection = null): string {}
/**
* @alias pg_last_error
* @deprecated
*/
function pg_errormessage(?PgSql\Connection $connection = null): string {}
/** @refcount 1 */
function pg_options(?PgSql\Connection $connection = null): string {}
/** @refcount 1 */
function pg_port(?PgSql\Connection $connection = null): string {}
/** @refcount 1 */
function pg_tty(?PgSql\Connection $connection = null): string {}
/** @refcount 1 */
function pg_host(?PgSql\Connection $connection = null): string {}
/**
* @return array<string, int|string|null>
* @refcount 1
*/
function pg_version(?PgSql\Connection $connection = null): array {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_parameter_status($connection, string $name = UNKNOWN): string|false {}
function pg_ping(?PgSql\Connection $connection = null): bool {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_query($connection, string $query = UNKNOWN): PgSql\Result|false {}
/**
* @param PgSql\Connection|string $connection
* @alias pg_query
*/
function pg_exec($connection, string $query = UNKNOWN): PgSql\Result|false {}
/**
* @param PgSql\Connection|string $connection
* @param string|array $query
* @refcount 1
*/
function pg_query_params($connection, $query, array $params = UNKNOWN): PgSql\Result|false {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_prepare($connection, string $statement_name, string $query = UNKNOWN): PgSql\Result|false {}
/**
* @param PgSql\Connection|string $connection
* @param string|array $statement_name
* @refcount 1
*/
function pg_execute($connection, $statement_name, array $params = UNKNOWN): PgSql\Result|false {}
function pg_num_rows(PgSql\Result $result): int {}
/**
* @alias pg_num_rows
* @deprecated
*/
function pg_numrows(PgSql\Result $result): int {}
function pg_num_fields(PgSql\Result $result): int {}
/**
* @alias pg_num_fields
* @deprecated
*/
function pg_numfields(PgSql\Result $result): int {}
function pg_affected_rows(PgSql\Result $result): int {}
/**
* @alias pg_affected_rows
* @deprecated
*/
function pg_cmdtuples(PgSql\Result $result): int {}
function pg_last_notice(PgSql\Connection $connection, int $mode = PGSQL_NOTICE_LAST): array|string|bool {}
function pg_field_table(PgSql\Result $result, int $field, bool $oid_only = false): string|int|false {}
/** @refcount 1 */
function pg_field_name(PgSql\Result $result, int $field): string {}
/**
* @alias pg_field_name
* @deprecated
*/
function pg_fieldname(PgSql\Result $result, int $field): string {}
function pg_field_size(PgSql\Result $result, int $field): int {}
/**
* @alias pg_field_size
* @deprecated
*/
function pg_fieldsize(PgSql\Result $result, int $field): int {}
function pg_field_type(PgSql\Result $result, int $field): string {}
/**
* @alias pg_field_type
* @deprecated
*/
function pg_fieldtype(PgSql\Result $result, int $field): string {}
/** @refcount 1 */
function pg_field_type_oid(PgSql\Result $result, int $field): string|int {}
function pg_field_num(PgSql\Result $result, string $field): int {}
/**
* @alias pg_field_num
* @deprecated
*/
function pg_fieldnum(PgSql\Result $result, string $field): int {}
/**
* @param string|int $row
* @refcount 1
*/
function pg_fetch_result(PgSql\Result $result, $row, string|int $field = UNKNOWN): string|false|null {}
/**
* @param string|int $row
* @alias pg_fetch_result
* @deprecated
*/
function pg_result(PgSql\Result $result, $row, string|int $field = UNKNOWN): string|false|null {}
/**
* @return array<int|string, string|null>|false
* @refcount 1
*/
function pg_fetch_row(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_NUM): array|false {}
/**
* @return array<int|string, string|null>|false
* @refcount 1
*/
function pg_fetch_assoc(PgSql\Result $result, ?int $row = null): array|false {}
/**
* @return array<int|string, string|null>|false
* @refcount 1
*/
function pg_fetch_array(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_BOTH): array|false {}
/** @refcount 1 */
function pg_fetch_object(PgSql\Result $result, ?int $row = null, string $class = "stdClass", array $constructor_args = []): object|false {}
/**
* @return array<int, array>
* @refcount 1
*/
function pg_fetch_all(PgSql\Result $result, int $mode = PGSQL_ASSOC): array {}
/**
* @return array<int, string|null>
* @refcount 1
*/
function pg_fetch_all_columns(PgSql\Result $result, int $field = 0): array {}
function pg_result_seek(PgSql\Result $result, int $row): bool {}
/** @param string|int $row */
function pg_field_prtlen(PgSql\Result $result, $row, string|int $field = UNKNOWN): int|false {}
/**
* @param string|int $row
* @alias pg_field_prtlen
* @deprecated
*/
function pg_fieldprtlen(PgSql\Result $result, $row, string|int $field = UNKNOWN): int|false {}
/** @param string|int $row */
function pg_field_is_null(PgSql\Result $result, $row, string|int $field = UNKNOWN): int|false {}
/**
* @param string|int $row
* @alias pg_field_is_null
* @deprecated
*/
function pg_fieldisnull(PgSql\Result $result, $row, string|int $field = UNKNOWN): int|false {}
function pg_free_result(PgSql\Result $result): bool {}
/**
* @alias pg_free_result
* @deprecated
*/
function pg_freeresult(PgSql\Result $result): bool {}
/** @refcount 1 */
function pg_last_oid(PgSql\Result $result): string|int|false {}
/**
* @alias pg_last_oid
* @deprecated
*/
function pg_getlastoid(PgSql\Result $result): string|int|false {}
function pg_trace(string $filename, string $mode = "w", ?PgSql\Connection $connection = null): bool {}
function pg_untrace(?PgSql\Connection $connection = null): bool {}
/**
* @param PgSql\Connection $connection
* @param string|int $oid
* @refcount 1
*/
function pg_lo_create($connection = UNKNOWN, $oid = UNKNOWN): string|int|false {}
/**
* @param PgSql\Connection $connection
* @param string|int $oid
* @alias pg_lo_create
* @deprecated
*/
function pg_locreate($connection = UNKNOWN, $oid = UNKNOWN): string|int|false {}
/**
* @param PgSql\Connection $connection
* @param string|int $oid
*/
function pg_lo_unlink($connection, $oid = UNKNOWN): bool {}
/**
* @param PgSql\Connection $connection
* @param string|int $oid
* @alias pg_lo_unlink
* @deprecated
*/
function pg_lounlink($connection, $oid = UNKNOWN): bool {}
/**
* @param PgSql\Connection $connection
* @param string|int $oid
* @refcount 1
*/
function pg_lo_open($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {}
/**
* @param PgSql\Connection $connection
* @param string|int $oid
* @alias pg_lo_open
* @deprecated
*/
function pg_loopen($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {}
function pg_lo_close(PgSql\Lob $lob): bool {}
/**
* @alias pg_lo_close
* @deprecated
*/
function pg_loclose(PgSql\Lob $lob): bool {}
/** @refcount 1 */
function pg_lo_read(PgSql\Lob $lob, int $length = 8192): string|false {}
/**
* @alias pg_lo_read
* @deprecated
*/
function pg_loread(PgSql\Lob $lob, int $length = 8192): string|false {}
function pg_lo_write(PgSql\Lob $lob, string $data, ?int $length = null): int|false {}
/**
* @alias pg_lo_write
* @deprecated
*/
function pg_lowrite(PgSql\Lob $lob, string $data, ?int $length = null): int|false {}
function pg_lo_read_all(PgSql\Lob $lob): int {}
/**
* @alias pg_lo_read_all
* @deprecated
*/
function pg_loreadall(PgSql\Lob $lob): int {}
/**
* @param PgSql\Connection|string $connection
* @param string|int $filename
* @param string|int $oid
* @refcount 1
*/
function pg_lo_import($connection, $filename = UNKNOWN, $oid = UNKNOWN): string|int|false {}
/**
* @param PgSql\Connection|string $connection
* @param string|int $filename
* @param string|int $oid
* @alias pg_lo_import
* @deprecated
*/
function pg_loimport($connection, $filename = UNKNOWN, $oid = UNKNOWN): string|int|false {}
/**
* @param PgSql\Connection|string|int $connection
* @param string|int $oid
* @param string|int $filename
*/
function pg_lo_export($connection, $oid = UNKNOWN, $filename = UNKNOWN): bool {}
/**
* @param PgSql\Connection|string|int $connection
* @param string|int $oid
* @param string|int $filename
* @alias pg_lo_export
* @deprecated
*/
function pg_loexport($connection, $oid = UNKNOWN, $filename = UNKNOWN): bool {}
function pg_lo_seek(PgSql\Lob $lob, int $offset, int $whence = SEEK_CUR): bool {}
function pg_lo_tell(PgSql\Lob $lob): int {}
function pg_lo_truncate(PgSql\Lob $lob, int $size): bool {}
/** @param PgSql\Connection|int $connection */
function pg_set_error_verbosity($connection, int $verbosity = UNKNOWN): int|false {}
/** @param PgSql\Connection|string $connection */
function pg_set_client_encoding($connection, string $encoding = UNKNOWN): int {}
/**
* @param PgSql\Connection|string $connection
* @alias pg_set_client_encoding
* @deprecated
*/
function pg_setclientencoding($connection, string $encoding = UNKNOWN): int {}
function pg_client_encoding(?PgSql\Connection $connection = null): string {}
/**
* @alias pg_client_encoding
* @deprecated
*/
function pg_clientencoding(?PgSql\Connection $connection = null): string {}
function pg_end_copy(?PgSql\Connection $connection = null): bool {}
/** @param PgSql\Connection|string $connection */
function pg_put_line($connection, string $query = UNKNOWN): bool {}
/**
* @return array<int, string>|false
* @refcount 1
*/
function pg_copy_to(PgSql\Connection $connection, string $table_name, string $separator = "\t", string $null_as = "\\\\N"): array|false {}
function pg_copy_from(PgSql\Connection $connection, string $table_name, array $rows, string $separator = "\t", string $null_as = "\\\\N"): bool {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_escape_string($connection, string $string = UNKNOWN): string {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_escape_bytea($connection, string $string = UNKNOWN): string {}
/** @refcount 1 */
function pg_unescape_bytea(string $string): string {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_escape_literal($connection, string $string = UNKNOWN): string|false {}
/**
* @param PgSql\Connection|string $connection
* @refcount 1
*/
function pg_escape_identifier($connection, string $string = UNKNOWN): string|false {}
/** @refcount 1 */
function pg_result_error(PgSql\Result $result): string|false {}
/** @refcount 1 */
function pg_result_error_field(PgSql\Result $result, int $field_code): string|false|null {}
function pg_connection_status(PgSql\Connection $connection): int {}
function pg_transaction_status(PgSql\Connection $connection): int {}
function pg_connection_reset(PgSql\Connection $connection): bool {}
function pg_cancel_query(PgSql\Connection $connection): bool {}
function pg_connection_busy(PgSql\Connection $connection): bool {}
function pg_send_query(PgSql\Connection $connection, string $query): int|bool {}
function pg_send_query_params(PgSql\Connection $connection, string $query, array $params): int|bool {}
function pg_send_prepare(PgSql\Connection $connection, string $statement_name, string $query): int|bool {}
function pg_send_execute(PgSql\Connection $connection, string $statement_name, array $params): int|bool {}
/** @refcount 1 */
function pg_get_result(PgSql\Connection $connection): PgSql\Result|false {}
/** @refcount 1 */
function pg_result_status(PgSql\Result $result, int $mode = PGSQL_STATUS_LONG): string|int {}
/**
* @return array<int|string, int|string>
* @refcount 1
*/
function pg_get_notify(PgSql\Connection $connection, int $mode = PGSQL_ASSOC): array|false {}
function pg_get_pid(PgSql\Connection $connection): int {}
/**
* @return resource|false
* @refcount 1
*/
function pg_socket(PgSql\Connection $connection) {}
function pg_consume_input(PgSql\Connection $connection): bool {}
function pg_flush(PgSql\Connection $connection): int|bool {}
/**
* @return array<string, array>|false
* @refcount 1
*/
function pg_meta_data(PgSql\Connection $connection, string $table_name, bool $extended = false): array|false {}
/**
* @return array<string, mixed>|false
* @refcount 1
*/
function pg_convert(PgSql\Connection $connection, string $table_name, array $values, int $flags = 0): array|false {}
/** @refcount 1 */
function pg_insert(PgSql\Connection $connection, string $table_name, array $values, int $flags = PGSQL_DML_EXEC): PgSql\Result|string|bool {}
/** @refcount 1 */
function pg_update(PgSql\Connection $connection, string $table_name, array $values, array $conditions, int $flags = PGSQL_DML_EXEC): string|bool {}
/** @refcount 1 */
function pg_delete(PgSql\Connection $connection, string $table_name, array $conditions, int $flags = PGSQL_DML_EXEC): string|bool {}
/**
* @return array<int, array>|string|false
* @refcount 1
*/
function pg_select(PgSql\Connection $connection, string $table_name, array $conditions, int $flags = PGSQL_DML_EXEC, int $mode = PGSQL_ASSOC): array|string|false {}
}