forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysqli.stub.php
1672 lines (1423 loc) · 35 KB
/
mysqli.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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/** @generate-class-entries */
/* mysqli_options */
/**
* @var int
* @cvalue MYSQL_READ_DEFAULT_GROUP
*/
const MYSQLI_READ_DEFAULT_GROUP = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_READ_DEFAULT_FILE
*/
const MYSQLI_READ_DEFAULT_FILE = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_OPT_CONNECT_TIMEOUT
*/
const MYSQLI_OPT_CONNECT_TIMEOUT = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_OPT_LOCAL_INFILE
*/
const MYSQLI_OPT_LOCAL_INFILE = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_OPT_LOAD_DATA_LOCAL_DIR
*/
const MYSQLI_OPT_LOAD_DATA_LOCAL_DIR = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_INIT_COMMAND
*/
const MYSQLI_INIT_COMMAND = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_OPT_READ_TIMEOUT
*/
const MYSQLI_OPT_READ_TIMEOUT = UNKNOWN;
/**
* @var int
* @cvalue MYSQLND_OPT_NET_CMD_BUFFER_SIZE
*/
const MYSQLI_OPT_NET_CMD_BUFFER_SIZE = UNKNOWN;
/**
* @var int
* @cvalue MYSQLND_OPT_NET_READ_BUFFER_SIZE
*/
const MYSQLI_OPT_NET_READ_BUFFER_SIZE = UNKNOWN;
/**
* @var int
* @cvalue MYSQLND_OPT_INT_AND_FLOAT_NATIVE
*/
const MYSQLI_OPT_INT_AND_FLOAT_NATIVE = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_OPT_SSL_VERIFY_SERVER_CERT
*/
const MYSQLI_OPT_SSL_VERIFY_SERVER_CERT = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_SERVER_PUBLIC_KEY
*/
const MYSQLI_SERVER_PUBLIC_KEY = UNKNOWN;
/* mysqli_real_connect flags */
/**
* @var int
* @cvalue CLIENT_SSL
*/
const MYSQLI_CLIENT_SSL = UNKNOWN;
/**
* @var int
* @cvalue CLIENT_COMPRESS
*/
const MYSQLI_CLIENT_COMPRESS = UNKNOWN;
/**
* @var int
* @cvalue CLIENT_INTERACTIVE
*/
const MYSQLI_CLIENT_INTERACTIVE = UNKNOWN;
/**
* @var int
* @cvalue CLIENT_IGNORE_SPACE
*/
const MYSQLI_CLIENT_IGNORE_SPACE = UNKNOWN;
/**
* @var int
* @cvalue CLIENT_NO_SCHEMA
*/
const MYSQLI_CLIENT_NO_SCHEMA = UNKNOWN;
/**
* @var int
* @cvalue CLIENT_FOUND_ROWS
*/
const MYSQLI_CLIENT_FOUND_ROWS = UNKNOWN;
#ifdef CLIENT_SSL_VERIFY_SERVER_CERT
/**
* @var int
* @cvalue CLIENT_SSL_VERIFY_SERVER_CERT
*/
const MYSQLI_CLIENT_SSL_VERIFY_SERVER_CERT = UNKNOWN;
/**
* @var int
* @cvalue CLIENT_SSL_DONT_VERIFY_SERVER_CERT
*/
const MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT = UNKNOWN;
#endif
/**
* @var int
* @cvalue CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS
*/
const MYSQLI_CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS
*/
const MYSQLI_OPT_CAN_HANDLE_EXPIRED_PASSWORDS = UNKNOWN;
/* for mysqli_query */
/**
* @var int
* @cvalue MYSQLI_STORE_RESULT
*/
const MYSQLI_STORE_RESULT = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_USE_RESULT
*/
const MYSQLI_USE_RESULT = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_ASYNC
*/
const MYSQLI_ASYNC = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_STORE_RESULT_COPY_DATA
*/
const MYSQLI_STORE_RESULT_COPY_DATA = UNKNOWN;
/* for mysqli_fetch_assoc */
/**
* @var int
* @cvalue MYSQLI_ASSOC
*/
const MYSQLI_ASSOC = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_NUM
*/
const MYSQLI_NUM = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_BOTH
*/
const MYSQLI_BOTH = UNKNOWN;
/* for mysqli_stmt_set_attr */
/**
* @var int
* @cvalue STMT_ATTR_UPDATE_MAX_LENGTH
*/
const MYSQLI_STMT_ATTR_UPDATE_MAX_LENGTH = UNKNOWN;
/**
* @var int
* @cvalue STMT_ATTR_CURSOR_TYPE
*/
const MYSQLI_STMT_ATTR_CURSOR_TYPE = UNKNOWN;
/**
* @var int
* @cvalue CURSOR_TYPE_NO_CURSOR
*/
const MYSQLI_CURSOR_TYPE_NO_CURSOR = UNKNOWN;
/**
* @var int
* @cvalue CURSOR_TYPE_READ_ONLY
*/
const MYSQLI_CURSOR_TYPE_READ_ONLY = UNKNOWN;
/**
* @var int
* @cvalue CURSOR_TYPE_FOR_UPDATE
*/
const MYSQLI_CURSOR_TYPE_FOR_UPDATE = UNKNOWN;
/**
* @var int
* @cvalue CURSOR_TYPE_SCROLLABLE
*/
const MYSQLI_CURSOR_TYPE_SCROLLABLE = UNKNOWN;
/**
* @var int
* @cvalue STMT_ATTR_PREFETCH_ROWS
*/
const MYSQLI_STMT_ATTR_PREFETCH_ROWS = UNKNOWN;
/* column information */
/**
* @var int
* @cvalue NOT_NULL_FLAG
*/
const MYSQLI_NOT_NULL_FLAG = UNKNOWN;
/**
* @var int
* @cvalue PRI_KEY_FLAG
*/
const MYSQLI_PRI_KEY_FLAG = UNKNOWN;
/**
* @var int
* @cvalue UNIQUE_KEY_FLAG
*/
const MYSQLI_UNIQUE_KEY_FLAG = UNKNOWN;
/**
* @var int
* @cvalue MULTIPLE_KEY_FLAG
*/
const MYSQLI_MULTIPLE_KEY_FLAG = UNKNOWN;
/**
* @var int
* @cvalue BLOB_FLAG
*/
const MYSQLI_BLOB_FLAG = UNKNOWN;
/**
* @var int
* @cvalue UNSIGNED_FLAG
*/
const MYSQLI_UNSIGNED_FLAG = UNKNOWN;
/**
* @var int
* @cvalue ZEROFILL_FLAG
*/
const MYSQLI_ZEROFILL_FLAG = UNKNOWN;
/**
* @var int
* @cvalue AUTO_INCREMENT_FLAG
*/
const MYSQLI_AUTO_INCREMENT_FLAG = UNKNOWN;
/**
* @var int
* @cvalue TIMESTAMP_FLAG
*/
const MYSQLI_TIMESTAMP_FLAG = UNKNOWN;
/**
* @var int
* @cvalue SET_FLAG
*/
const MYSQLI_SET_FLAG = UNKNOWN;
/**
* @var int
* @cvalue NUM_FLAG
*/
const MYSQLI_NUM_FLAG = UNKNOWN;
/**
* @var int
* @cvalue PART_KEY_FLAG
*/
const MYSQLI_PART_KEY_FLAG = UNKNOWN;
/**
* @var int
* @cvalue GROUP_FLAG
*/
const MYSQLI_GROUP_FLAG = UNKNOWN;
/**
* @var int
* @cvalue ENUM_FLAG
*/
const MYSQLI_ENUM_FLAG = UNKNOWN;
/**
* @var int
* @cvalue BINARY_FLAG
*/
const MYSQLI_BINARY_FLAG = UNKNOWN;
/**
* @var int
* @cvalue NO_DEFAULT_VALUE_FLAG
*/
const MYSQLI_NO_DEFAULT_VALUE_FLAG = UNKNOWN;
/**
* @var int
* @cvalue ON_UPDATE_NOW_FLAG
*/
const MYSQLI_ON_UPDATE_NOW_FLAG = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_DECIMAL
*/
const MYSQLI_TYPE_DECIMAL = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_TINY
*/
const MYSQLI_TYPE_TINY = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_SHORT
*/
const MYSQLI_TYPE_SHORT = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_LONG
*/
const MYSQLI_TYPE_LONG = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_FLOAT
*/
const MYSQLI_TYPE_FLOAT = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_DOUBLE
*/
const MYSQLI_TYPE_DOUBLE = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_NULL
*/
const MYSQLI_TYPE_NULL = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_TIMESTAMP
*/
const MYSQLI_TYPE_TIMESTAMP = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_LONGLONG
*/
const MYSQLI_TYPE_LONGLONG = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_INT24
*/
const MYSQLI_TYPE_INT24 = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_DATE
*/
const MYSQLI_TYPE_DATE = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_TIME
*/
const MYSQLI_TYPE_TIME = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_DATETIME
*/
const MYSQLI_TYPE_DATETIME = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_YEAR
*/
const MYSQLI_TYPE_YEAR = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_NEWDATE
*/
const MYSQLI_TYPE_NEWDATE = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_ENUM
*/
const MYSQLI_TYPE_ENUM = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_SET
*/
const MYSQLI_TYPE_SET = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_TINY_BLOB
*/
const MYSQLI_TYPE_TINY_BLOB = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_MEDIUM_BLOB
*/
const MYSQLI_TYPE_MEDIUM_BLOB = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_LONG_BLOB
*/
const MYSQLI_TYPE_LONG_BLOB = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_BLOB
*/
const MYSQLI_TYPE_BLOB = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_VAR_STRING
*/
const MYSQLI_TYPE_VAR_STRING = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_STRING
*/
const MYSQLI_TYPE_STRING = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_CHAR
*/
const MYSQLI_TYPE_CHAR = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_INTERVAL
*/
const MYSQLI_TYPE_INTERVAL = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_GEOMETRY
*/
const MYSQLI_TYPE_GEOMETRY = UNKNOWN;
#ifdef FIELD_TYPE_JSON
/**
* @var int
* @cvalue FIELD_TYPE_JSON
*/
const MYSQLI_TYPE_JSON = UNKNOWN;
#endif
/**
* @var int
* @cvalue FIELD_TYPE_NEWDECIMAL
*/
const MYSQLI_TYPE_NEWDECIMAL = UNKNOWN;
/**
* @var int
* @cvalue FIELD_TYPE_BIT
*/
const MYSQLI_TYPE_BIT = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_SET_CHARSET_NAME
*/
const MYSQLI_SET_CHARSET_NAME = UNKNOWN;
/**
* @var int
* @cvalue MYSQL_SET_CHARSET_DIR
*/
const MYSQLI_SET_CHARSET_DIR = UNKNOWN;
/* bind support */
/**
* @var int
* @cvalue MYSQL_NO_DATA
* @deprecated
*/
const MYSQLI_NO_DATA = UNKNOWN;
#ifdef MYSQL_DATA_TRUNCATED
/**
* @var int
* @cvalue MYSQL_DATA_TRUNCATED
* @deprecated
*/
const MYSQLI_DATA_TRUNCATED = UNKNOWN;
#endif
/* reporting */
/**
* @var int
* @cvalue MYSQLI_REPORT_INDEX
*/
const MYSQLI_REPORT_INDEX = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_REPORT_ERROR
*/
const MYSQLI_REPORT_ERROR = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_REPORT_STRICT
*/
const MYSQLI_REPORT_STRICT = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_REPORT_ALL
*/
const MYSQLI_REPORT_ALL = UNKNOWN;
/**
* @var int
* @cvalue MYSQLI_REPORT_OFF
*/
const MYSQLI_REPORT_OFF = UNKNOWN;
/**
* @var int
* @cvalue MYSQLND_DBG_ENABLED
*/
const MYSQLI_DEBUG_TRACE_ENABLED = UNKNOWN;
/**
* @var int
* @cvalue SERVER_QUERY_NO_GOOD_INDEX_USED
* @deprecated
*/
const MYSQLI_SERVER_QUERY_NO_GOOD_INDEX_USED = UNKNOWN;
/**
* @var int
* @cvalue SERVER_QUERY_NO_INDEX_USED
* @deprecated
*/
const MYSQLI_SERVER_QUERY_NO_INDEX_USED = UNKNOWN;
#ifdef SERVER_QUERY_WAS_SLOW
/**
* @var int
* @cvalue SERVER_QUERY_WAS_SLOW
* @deprecated
*/
const MYSQLI_SERVER_QUERY_WAS_SLOW = UNKNOWN;
#endif
#ifdef SERVER_PS_OUT_PARAMS
/**
* @var int
* @cvalue SERVER_PS_OUT_PARAMS
* @deprecated
*/
const MYSQLI_SERVER_PS_OUT_PARAMS = UNKNOWN;
#endif
/**
* @var int
* @cvalue REFRESH_GRANT
*/
const MYSQLI_REFRESH_GRANT = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_LOG
*/
const MYSQLI_REFRESH_LOG = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_TABLES
*/
const MYSQLI_REFRESH_TABLES = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_HOSTS
*/
const MYSQLI_REFRESH_HOSTS = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_STATUS
*/
const MYSQLI_REFRESH_STATUS = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_THREADS
*/
const MYSQLI_REFRESH_THREADS = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_SLAVE
*/
const MYSQLI_REFRESH_REPLICA = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_SLAVE
*/
const MYSQLI_REFRESH_SLAVE = UNKNOWN;
/**
* @var int
* @cvalue REFRESH_MASTER
*/
const MYSQLI_REFRESH_MASTER = UNKNOWN;
#ifdef REFRESH_BACKUP_LOG
/**
* @var int
* @cvalue REFRESH_BACKUP_LOG
*/
const MYSQLI_REFRESH_BACKUP_LOG = UNKNOWN;
#endif
/**
* @var int
* @cvalue TRANS_START_WITH_CONSISTENT_SNAPSHOT
*/
const MYSQLI_TRANS_START_WITH_CONSISTENT_SNAPSHOT = UNKNOWN;
/**
* @var int
* @cvalue TRANS_START_READ_WRITE
*/
const MYSQLI_TRANS_START_READ_WRITE = UNKNOWN;
/**
* @var int
* @cvalue TRANS_START_READ_ONLY
*/
const MYSQLI_TRANS_START_READ_ONLY = UNKNOWN;
/**
* @var int
* @cvalue TRANS_COR_AND_CHAIN
*/
const MYSQLI_TRANS_COR_AND_CHAIN = UNKNOWN;
/**
* @var int
* @cvalue TRANS_COR_AND_NO_CHAIN
*/
const MYSQLI_TRANS_COR_AND_NO_CHAIN = UNKNOWN;
/**
* @var int
* @cvalue TRANS_COR_RELEASE
*/
const MYSQLI_TRANS_COR_RELEASE = UNKNOWN;
/**
* @var int
* @cvalue TRANS_COR_NO_RELEASE
*/
const MYSQLI_TRANS_COR_NO_RELEASE = UNKNOWN;
/**
* @var bool
* @deprecated
*/
const MYSQLI_IS_MARIADB = false;
final class mysqli_driver
{
/** @readonly */
public string $client_info;
/** @readonly */
public int $client_version;
/** @readonly */
public int $driver_version;
public int $report_mode = 0;
}
class mysqli
{
/**
* @readonly
* @link mysqli.affected-rows
*/
public int|string $affected_rows;
/**
* @readonly
* @link mysqli.get-client-info
*/
public string $client_info;
/**
* @readonly
* @link mysqli.get-client-version
*/
public int $client_version;
/**
* @readonly
* @link mysqli.connect-errno
*/
public int $connect_errno;
/**
* @readonly
* @link mysqli.connect-error
*/
public ?string $connect_error;
/**
* @readonly
* @link mysqli.errno
*/
public int $errno;
/**
* @readonly
* @link mysqli.error
*/
public string $error;
/**
* @readonly
* @link mysqli.error-list
*/
public array $error_list;
/**
* @readonly
* @link mysqli.field-count
*/
public int $field_count;
/**
* @readonly
* @link mysqli.get-host-info
*/
public string $host_info;
/**
* @readonly
* @link mysqli.info
*/
public ?string $info;
/**
* @readonly
* @link mysqli.insert-id
*/
public int|string $insert_id;
/**
* @readonly
* @link mysqli.get-server-info
*/
public string $server_info;
/**
* @readonly
* @link mysqli.get-server-version
*/
public int $server_version;
/**
* @readonly
* @link mysqli.sqlstate
*/
public string $sqlstate;
/**
* @readonly
* @link mysqli.get-proto-info
*/
public int $protocol_version;
/**
* @readonly
* @link mysqli.thread-id
*/
public int $thread_id;
/**
* @readonly
* @link mysqli.warning-count
*/
public int $warning_count;
public function __construct(
?string $hostname = null,
?string $username = null,
#[\SensitiveParameter] ?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null
) {}
/**
* @tentative-return-type
* @alias mysqli_autocommit
*/
public function autocommit(bool $enable): bool {}
/**
* @tentative-return-type
* @alias mysqli_begin_transaction
*/
public function begin_transaction(int $flags = 0, ?string $name = null): bool {}
/**
* @tentative-return-type
* @alias mysqli_change_user
*/
public function change_user(string $username, #[\SensitiveParameter] string $password, ?string $database): bool {}
/**
* @tentative-return-type
* @alias mysqli_character_set_name
*/
public function character_set_name(): string {}
/**
* @tentative-return-type
* @alias mysqli_close
*/
public function close(): true {}
/**
* @tentative-return-type
* @alias mysqli_commit
*/
public function commit(int $flags = 0, ?string $name = null): bool {}
/**
* @tentative-return-type
* @alias mysqli_connect
* @no-verify
*/
public function connect(
?string $hostname = null,
?string $username = null,
#[\SensitiveParameter] ?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null
): bool {}
/**
* @tentative-return-type
* @alias mysqli_dump_debug_info
*/
public function dump_debug_info(): bool {}
/**
* @tentative-return-type
* @alias mysqli_debug
* @no-verify Should really be a static method
*/
public function debug(string $options): true {}
/**
* @tentative-return-type
* @alias mysqli_get_charset
*/
public function get_charset(): ?object {}
/**
* @alias mysqli_execute_query
*/
public function execute_query(string $query, ?array $params = null): mysqli_result|bool {}
/**
* @tentative-return-type
* @alias mysqli_get_client_info
* @deprecated 8.1.0
*/
public function get_client_info(): string {}
/**
* @return array<string, mixed>
* @tentative-return-type
* @alias mysqli_get_connection_stats
*/
public function get_connection_stats(): array {}
/**
* @tentative-return-type
* @alias mysqli_get_server_info
*/
public function get_server_info(): string {}
/**
* @tentative-return-type
* @alias mysqli_get_warnings
*/
public function get_warnings(): mysqli_warning|false {}
/**
* @deprecated
* @return bool|null
* */
public function init() {}
/**
* @tentative-return-type
* @alias mysqli_kill
*/
public function kill(int $process_id): bool {}
/**
* @tentative-return-type
* @alias mysqli_multi_query
*/
public function multi_query(string $query): bool {}
/**
* @tentative-return-type
* @alias mysqli_more_results
*/
public function more_results(): bool {}
/**
* @tentative-return-type
* @alias mysqli_next_result
*/
public function next_result(): bool {}
/**
* @tentative-return-type
* @alias mysqli_ping
*/
public function ping(): bool {}
/**
* @tentative-return-type
* @alias mysqli_poll
*/
public static function poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $microseconds = 0): int|false {}
/**
* @tentative-return-type
* @alias mysqli_prepare
*/
public function prepare(string $query): mysqli_stmt|false {}
/**
* @tentative-return-type
* @alias mysqli_query
*/
public function query(string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli_result|bool {}
/**
* @tentative-return-type
* @alias mysqli_real_connect
*/
public function real_connect(
?string $hostname = null,
?string $username = null,
#[\SensitiveParameter] ?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null,
int $flags = 0
): bool {}
/**
* @tentative-return-type
* @alias mysqli_real_escape_string
*/
public function real_escape_string(string $string): string {}
/**
* @tentative-return-type
* @alias mysqli_reap_async_query
*/
public function reap_async_query(): mysqli_result|bool {}
/**
* @tentative-return-type
* @alias mysqli_real_escape_string
*/
public function escape_string(string $string): string {}
/**
* @tentative-return-type
* @alias mysqli_real_query
*/
public function real_query(string $query): bool {}
/**
* @tentative-return-type
* @alias mysqli_release_savepoint
*/
public function release_savepoint(string $name): bool {}
/**
* @tentative-return-type
* @alias mysqli_rollback
*/
public function rollback(int $flags = 0, ?string $name = null): bool {}
/**
* @tentative-return-type
* @alias mysqli_savepoint
*/
public function savepoint(string $name): bool {}
/**
* @tentative-return-type
* @alias mysqli_select_db
*/
public function select_db(string $database): bool {}
/**
* @tentative-return-type
* @alias mysqli_set_charset
*/
public function set_charset(string $charset): bool {}
/**
* @param string|int $value
* @tentative-return-type
* @alias mysqli_options
*/
public function options(int $option, $value): bool {}
/**
* @param string|int $value
* @tentative-return-type
* @alias mysqli_options
*/
public function set_opt(int $option, $value): bool {}
/**
* @tentative-return-type
* @alias mysqli_ssl_set
*/
public function ssl_set(
?string $key,
?string $certificate,
?string $ca_certificate,
?string $ca_path,
?string $cipher_algos
): true {}
/**