123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077 |
- <?php
- /** @generate-class-entries */
- final class mysqli_driver
- {
- /** @readonly */
- public string $client_info;
- /** @readonly */
- public int $client_version;
- /** @readonly */
- public int $driver_version;
- public bool $reconnect = false;
- 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,
- ?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, string $password, ?string $database): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_character_set_name
- */
- public function character_set_name(): string {}
- /**
- * @return true
- * @alias mysqli_close
- * @no-verify
- */
- public function close() {} // TODO make return type void
- /**
- * @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,
- ?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 {}
- /**
- * @return true
- * @alias mysqli_debug
- * @no-verify Should really be a static method
- */
- public function debug(string $options) {} // TODO make return type void
- /**
- * @tentative-return-type
- * @alias mysqli_get_charset
- */
- public function get_charset(): ?object {}
- /**
- * @tentative-return-type
- * @alias mysqli_get_client_info
- * @deprecated 8.1.0
- */
- public function get_client_info(): string {}
- #if defined(MYSQLI_USE_MYSQLND)
- /**
- * @return array<string, mixed>
- * @tentative-return-type
- * @alias mysqli_get_connection_stats
- */
- public function get_connection_stats(): array {}
- #endif
- /**
- * @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 {}
- #if defined(MYSQLI_USE_MYSQLND)
- /**
- * @tentative-return-type
- * @alias mysqli_poll
- */
- public static function poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $microseconds = 0): int|false {}
- #endif
- /**
- * @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,
- ?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 {}
- #if defined(MYSQLI_USE_MYSQLND)
- /**
- * @tentative-return-type
- * @alias mysqli_reap_async_query
- */
- public function reap_async_query(): mysqli_result|bool {}
- #endif
- /**
- * @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 {}
- /**
- * @return true
- * @alias mysqli_ssl_set
- * @no-verify
- */
- public function ssl_set(
- ?string $key,
- ?string $certificate,
- ?string $ca_certificate,
- ?string $ca_path,
- ?string $cipher_algos
- ) {} // TODO make return type void
- /**
- * @tentative-return-type
- * @alias mysqli_stat
- */
- public function stat(): string|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_init
- */
- public function stmt_init(): mysqli_stmt|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_store_result
- */
- public function store_result(int $mode = 0): mysqli_result|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_thread_safe
- */
- public function thread_safe(): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_use_result
- */
- public function use_result(): mysqli_result|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_refresh
- */
- public function refresh(int $flags): bool {}
- }
- class mysqli_result implements IteratorAggregate
- {
- /**
- * @readonly
- * @link mysqli-result.current-field
- */
- public int $current_field;
- /**
- * @readonly
- * @link mysqli-result.field-count
- */
- public int $field_count;
- /**
- * @readonly
- * @link mysqli-result.lengths
- */
- public ?array $lengths;
- /**
- * @readonly
- * @link mysqli-result.num-rows
- */
- public int|string $num_rows;
- public int $type;
- public function __construct(mysqli $mysql, int $result_mode = MYSQLI_STORE_RESULT) {}
- /**
- * @tentative-return-type
- * @alias mysqli_free_result
- */
- public function close(): void {}
- /**
- * @tentative-return-type
- * @alias mysqli_free_result
- */
- public function free(): void {}
- /**
- * @tentative-return-type
- * @alias mysqli_data_seek
- */
- public function data_seek(int $offset): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_fetch_field
- */
- public function fetch_field(): object|false {}
- /**
- * @return array<int, object>
- * @tentative-return-type
- * @alias mysqli_fetch_fields
- */
- public function fetch_fields(): array {}
- /**
- * @tentative-return-type
- * @alias mysqli_fetch_field_direct
- */
- public function fetch_field_direct(int $index): object|false {}
- /**
- * @return array<int|string, mixed>
- * @tentative-return-type
- * @alias mysqli_fetch_all
- */
- public function fetch_all(int $mode = MYSQLI_NUM): array {}
- /**
- * @return array<int|string, mixed>|null|false
- * @tentative-return-type
- * @alias mysqli_fetch_array
- */
- public function fetch_array(int $mode = MYSQLI_BOTH): array|null|false {}
- /**
- * @return array<int|string, mixed>|null|false
- * @tentative-return-type
- * @alias mysqli_fetch_assoc
- */
- public function fetch_assoc(): array|null|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_fetch_object
- */
- public function fetch_object(string $class = "stdClass", array $constructor_args = []): object|null|false {}
- /**
- * @return array<int, mixed>|null|false
- * @tentative-return-type
- * @alias mysqli_fetch_row
- */
- public function fetch_row(): array|null|false {}
- /** @alias mysqli_fetch_column */
- public function fetch_column(int $column = 0): null|int|float|string|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_field_seek
- */
- public function field_seek(int $index): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_free_result
- */
- public function free_result(): void {}
- public function getIterator(): Iterator {}
- }
- class mysqli_stmt
- {
- /**
- * @readonly
- * @link mysqli-stmt.affected-rows
- */
- public int|string $affected_rows;
- /**
- * @readonly
- * @link mysqli-stmt.insert-id
- */
- public int|string $insert_id;
- /**
- * @readonly
- * @link mysqli-stmt.num-rows
- */
- public int|string $num_rows;
- /**
- * @readonly
- * @link mysqli-stmt.param-count
- */
- public int $param_count;
- /**
- * @readonly
- * @link mysqli-stmt.field-count
- */
- public int $field_count;
- /**
- * @readonly
- * @link mysqli-stmt.errno
- */
- public int $errno;
- /**
- * @readonly
- * @link mysqli-stmt.error
- */
- public string $error;
- /**
- * @readonly
- * @link mysqli-stmt.error-list
- */
- public array $error_list;
- /**
- * @readonly
- * @link mysqli-stmt.sqlstate
- */
- public string $sqlstate;
- public int $id;
- public function __construct(mysqli $mysql, ?string $query = null) {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_attr_get
- */
- public function attr_get(int $attribute): int {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_attr_set
- */
- public function attr_set(int $attribute, int $value): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_bind_param
- */
- public function bind_param(string $types, mixed &...$vars): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_bind_result
- */
- public function bind_result(mixed &...$vars): bool {}
- /**
- * @return true
- * @alias mysqli_stmt_close
- * @no-verify
- */
- public function close() {} // TODO make return type void
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_data_seek
- */
- public function data_seek(int $offset): void {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_execute
- */
- public function execute(?array $params = null): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_fetch
- */
- public function fetch(): ?bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_get_warnings
- */
- public function get_warnings(): mysqli_warning|false {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_result_metadata
- */
- public function result_metadata(): mysqli_result|false {}
- #if defined(MYSQLI_USE_MYSQLND)
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_more_results
- */
- public function more_results(): bool {}
- #endif
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_next_result
- */
- public function next_result(): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_num_rows
- */
- public function num_rows(): int|string {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_send_long_data
- */
- public function send_long_data(int $param_num, string $data): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_free_result
- */
- public function free_result(): void {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_reset
- */
- public function reset(): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_prepare
- */
- public function prepare(string $query): bool {}
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_store_result
- */
- public function store_result(): bool {}
- #if defined(MYSQLI_USE_MYSQLND)
- /**
- * @tentative-return-type
- * @alias mysqli_stmt_get_result
- */
- public function get_result(): mysqli_result|false {}
- #endif
- }
- final class mysqli_warning
- {
- public string $message;
- public string $sqlstate;
- public int $errno;
- private function __construct() {}
- public function next(): bool {}
- }
- final class mysqli_sql_exception extends RuntimeException
- {
- protected string $sqlstate = "00000";
- public function getSqlState(): string {}
- }
- /** @refcount 1 */
- function mysqli_affected_rows(mysqli $mysql): int|string {}
- function mysqli_autocommit(mysqli $mysql, bool $enable): bool {}
- function mysqli_begin_transaction(mysqli $mysql, int $flags = 0, ?string $name = null): bool {}
- function mysqli_change_user(mysqli $mysql, string $username, string $password, ?string $database): bool {}
- /** @refcount 1 */
- function mysqli_character_set_name(mysqli $mysql): string {}
- /** @return true */
- function mysqli_close(mysqli $mysql): bool {} // TODO make return type void
- function mysqli_commit(mysqli $mysql, int $flags = 0, ?string $name = null): bool {}
- /** @refcount 1 */
- function mysqli_connect(
- ?string $hostname = null,
- ?string $username = null,
- ?string $password = null,
- ?string $database = null,
- ?int $port = null,
- ?string $socket = null
- ): mysqli|false {}
- function mysqli_connect_errno(): int {}
- /** @refcount 1 */
- function mysqli_connect_error(): ?string {}
- function mysqli_data_seek(mysqli_result $result, int $offset): bool {}
- function mysqli_dump_debug_info(mysqli $mysql): bool {}
- /** @return true */
- function mysqli_debug(string $options): bool {} // TODO make return type void
- function mysqli_errno(mysqli $mysql): int {}
- /** @refcount 1 */
- function mysqli_error(mysqli $mysql): string {}
- /**
- * @return array<int, array>
- * @refcount 1
- */
- function mysqli_error_list(mysqli $mysql): array {}
- function mysqli_stmt_execute(mysqli_stmt $statement, ?array $params = null): bool {}
- /** @alias mysqli_stmt_execute */
- function mysqli_execute(mysqli_stmt $statement, ?array $params = null): bool {}
- /** @refcount 1 */
- function mysqli_fetch_field(mysqli_result $result): object|false {}
- /**
- * @return array<int, object>
- * @refcount 1
- */
- function mysqli_fetch_fields(mysqli_result $result): array {}
- /** @refcount 1 */
- function mysqli_fetch_field_direct(mysqli_result $result, int $index): object|false {}
- /**
- * @return array<int, int>|false
- * @refcount 1
- */
- function mysqli_fetch_lengths(mysqli_result $result): array|false {}
- /**
- * @return array<int|string, mixed>
- * @refcount 1
- */
- function mysqli_fetch_all(mysqli_result $result, int $mode = MYSQLI_NUM): array {}
- /**
- * @return array<int|string, mixed>|null|false
- * @refcount 1
- */
- function mysqli_fetch_array(mysqli_result $result, int $mode = MYSQLI_BOTH): array|null|false {}
- /**
- * @return array<int|string, mixed>|null|false
- * @refcount 1
- */
- function mysqli_fetch_assoc(mysqli_result $result): array|null|false {}
- /** @refcount 1 */
- function mysqli_fetch_object(mysqli_result $result, string $class = "stdClass", array $constructor_args = []): object|null|false {}
- /**
- * @return array<int, mixed>|null|false
- * @refcount 1
- */
- function mysqli_fetch_row(mysqli_result $result): array|null|false {}
- function mysqli_fetch_column(mysqli_result $result, int $column = 0): null|int|float|string|false {}
- function mysqli_field_count(mysqli $mysql): int {}
- function mysqli_field_seek(mysqli_result $result, int $index): bool {}
- function mysqli_field_tell(mysqli_result $result): int {}
- function mysqli_free_result(mysqli_result $result): void {}
- #if defined(MYSQLI_USE_MYSQLND)
- /**
- * @return array<string, mixed>
- * @refcount 1
- */
- function mysqli_get_connection_stats(mysqli $mysql): array {}
- /**
- * @return array<string, string>
- * @refcount 1
- */
- function mysqli_get_client_stats(): array {}
- #endif
- /** @refcount 1 */
- function mysqli_get_charset(mysqli $mysql): ?object {}
- /** @refcount 1 */
- function mysqli_get_client_info(?mysqli $mysql = null): string {}
- function mysqli_get_client_version(): int {}
- /**
- * @return array<string, int>
- * @refcount 1
- */
- function mysqli_get_links_stats(): array {}
- /** @refcount 1 */
- function mysqli_get_host_info(mysqli $mysql): string {}
- function mysqli_get_proto_info(mysqli $mysql): int {}
- /** @refcount 1 */
- function mysqli_get_server_info(mysqli $mysql): string {}
- function mysqli_get_server_version(mysqli $mysql): int {}
- /** @refcount 1 */
- function mysqli_get_warnings(mysqli $mysql): mysqli_warning|false {}
- /** @refcount 1 */
- function mysqli_init(): mysqli|false {}
- /** @refcount 1 */
- function mysqli_info(mysqli $mysql): ?string {}
- /** @refcount 1 */
- function mysqli_insert_id(mysqli $mysql): int|string {}
- function mysqli_kill(mysqli $mysql, int $process_id): bool {}
- function mysqli_more_results(mysqli $mysql): bool {}
- function mysqli_multi_query(mysqli $mysql, string $query): bool {}
- function mysqli_next_result(mysqli $mysql): bool {}
- function mysqli_num_fields(mysqli_result $result): int {}
- /** @refcount 1 */
- function mysqli_num_rows(mysqli_result $result): int|string {}
- /** @param string|int $value */
- function mysqli_options(mysqli $mysql, int $option, $value): bool {}
- /**
- * @param string|int $value
- * @alias mysqli_options
- */
- function mysqli_set_opt(mysqli $mysql, int $option, $value): bool {}
- function mysqli_ping(mysqli $mysql): bool {}
- #if defined(MYSQLI_USE_MYSQLND)
- function mysqli_poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $microseconds = 0): int|false {}
- #endif
- /** @refcount 1 */
- function mysqli_prepare(mysqli $mysql, string $query): mysqli_stmt|false {}
- function mysqli_report(int $flags): bool {}
- /** @refcount 1 */
- function mysqli_query(mysqli $mysql, string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli_result|bool {}
- function mysqli_real_connect(
- mysqli $mysql,
- ?string $hostname = null,
- ?string $username = null,
- ?string $password = null,
- ?string $database = null,
- ?int $port = null,
- ?string $socket = null,
- int $flags = 0
- ): bool {}
- /** @refcount 1 */
- function mysqli_real_escape_string(mysqli $mysql, string $string): string {}
- /** @alias mysqli_real_escape_string */
- function mysqli_escape_string(mysqli $mysql, string $string): string {}
- function mysqli_real_query(mysqli $mysql, string $query): bool {}
- #if defined(MYSQLI_USE_MYSQLND)
- /** @refcount 1 */
- function mysqli_reap_async_query(mysqli $mysql): mysqli_result|bool {}
- #endif
- function mysqli_release_savepoint(mysqli $mysql, string $name): bool {}
- function mysqli_rollback(mysqli $mysql, int $flags = 0, ?string $name = null): bool {}
- function mysqli_savepoint(mysqli $mysql, string $name): bool {}
- function mysqli_select_db(mysqli $mysql, string $database): bool {}
- function mysqli_set_charset(mysqli $mysql, string $charset): bool {}
- /** @refcount 1 */
- function mysqli_stmt_affected_rows(mysqli_stmt $statement): int|string {}
- function mysqli_stmt_attr_get(mysqli_stmt $statement, int $attribute): int {}
- function mysqli_stmt_attr_set(mysqli_stmt $statement, int $attribute, int $value): bool {}
- function mysqli_stmt_bind_param(mysqli_stmt $statement, string $types, mixed &...$vars): bool {}
- function mysqli_stmt_bind_result(mysqli_stmt $statement, mixed &...$vars): bool {}
- /** @return true */
- function mysqli_stmt_close(mysqli_stmt $statement): bool {}
- function mysqli_stmt_data_seek(mysqli_stmt $statement, int $offset): void {}
- function mysqli_stmt_errno(mysqli_stmt $statement): int {}
- /** @refcount 1 */
- function mysqli_stmt_error(mysqli_stmt $statement): string {}
- /**
- * @return array<int, array>
- * @refcount 1
- */
- function mysqli_stmt_error_list(mysqli_stmt $statement): array {}
- function mysqli_stmt_fetch(mysqli_stmt $statement): ?bool {}
- function mysqli_stmt_field_count(mysqli_stmt $statement): int {}
- function mysqli_stmt_free_result(mysqli_stmt $statement): void {}
- #if defined(MYSQLI_USE_MYSQLND)
- /** @refcount 1 */
- function mysqli_stmt_get_result(mysqli_stmt $statement): mysqli_result|false {}
- #endif
- /** @refcount 1 */
- function mysqli_stmt_get_warnings(mysqli_stmt $statement): mysqli_warning|false {}
- /** @refcount 1 */
- function mysqli_stmt_init(mysqli $mysql): mysqli_stmt|false {}
- /** @refcount 1 */
- function mysqli_stmt_insert_id(mysqli_stmt $statement): int|string {}
- #if defined(MYSQLI_USE_MYSQLND)
- function mysqli_stmt_more_results(mysqli_stmt $statement): bool {}
- #endif
- function mysqli_stmt_next_result(mysqli_stmt $statement): bool {}
- /** @refcount 1 */
- function mysqli_stmt_num_rows(mysqli_stmt $statement): int|string {}
- function mysqli_stmt_param_count(mysqli_stmt $statement): int {}
- function mysqli_stmt_prepare(mysqli_stmt $statement, string $query): bool {}
- function mysqli_stmt_reset(mysqli_stmt $statement): bool {}
- /** @refcount 1 */
- function mysqli_stmt_result_metadata(mysqli_stmt $statement): mysqli_result|false {}
- function mysqli_stmt_send_long_data(mysqli_stmt $statement, int $param_num, string $data): bool {}
- function mysqli_stmt_store_result(mysqli_stmt $statement): bool {}
- /** @refcount 1 */
- function mysqli_stmt_sqlstate(mysqli_stmt $statement): string {}
- /** @refcount 1 */
- function mysqli_sqlstate(mysqli $mysql): string {}
- /** @return true */
- function mysqli_ssl_set(
- mysqli $mysql,
- ?string $key,
- ?string $certificate,
- ?string $ca_certificate,
- ?string $ca_path,
- ?string $cipher_algos
- ): bool {} // TODO make return type void
- /** @refcount 1 */
- function mysqli_stat(mysqli $mysql): string|false {}
- /** @refcount 1 */
- function mysqli_store_result(mysqli $mysql, int $mode = 0): mysqli_result|false {}
- function mysqli_thread_id(mysqli $mysql): int {}
- function mysqli_thread_safe(): bool {}
- /** @refcount 1 */
- function mysqli_use_result(mysqli $mysql): mysqli_result|false {}
- function mysqli_warning_count(mysqli $mysql): int {}
- function mysqli_refresh(mysqli $mysql, int $flags): bool {}
|