php-src/ext/mysqli/mysqli.stub.php
Máté Kocsis 0d330e1a02
Add a few missing parameter types in stubs
Related to GH-5627
2020-07-30 14:26:45 +02:00

762 lines
18 KiB
PHP

<?php
/** @generate-function-entries */
final class mysqli_driver
{
}
class mysqli
{
/** @alias mysqli_link_construct */
public function __construct(
?string $host = null,
?string $user = null,
?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null
) {}
/**
* @return bool
* @alias mysqli_autocommit
*/
public function autocommit(bool $mode) {}
/**
* @return bool
* @alias mysqli_begin_transaction
*/
public function begin_transaction(int $flags = 0, ?string $name = null) {}
/**
* @return bool
* @alias mysqli_change_user
*/
public function change_user(string $user, string $password, ?string $database) {}
/**
* @return string|null
* @alias mysqli_character_set_name
*/
public function character_set_name() {}
/**
* @return bool
* @alias mysqli_close
*/
public function close() {}
/**
* @return bool
* @alias mysqli_commit
*/
public function commit(int $flags = -1, ?string $name = null) {}
/**
* @return mysqli|null|false
* @alias mysqli_connect
*/
public function connect(
?string $host = null,
?string $user = null,
?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null
) {}
/**
* @return bool
* @alias mysqli_dump_debug_info
*/
public function dump_debug_info() {}
/**
* @return bool
* @alias mysqli_debug
*/
public function debug(string $debug_options) {}
/**
* @return object|null
* @alias mysqli_get_charset
*/
public function get_charset() {}
/**
* @return string|null
* @alias mysqli_get_client_info
*/
public function get_client_info() {}
#if defined(MYSQLI_USE_MYSQLND)
/**
* @return array
* @alias mysqli_get_connection_stats
*/
public function get_connection_stats() {}
#endif
/**
* @return string|null
* @alias mysqli_get_server_info
*/
public function get_server_info() {}
/**
* @return mysqli_warning|false
* @alias mysqli_get_warnings
*/
public function get_warnings() {}
/**
* @return mysqli|false
* @alias mysqli_init_method
*/
public function init() {}
/**
* @return bool
* @alias mysqli_kill
*/
public function kill(int $connection_id) {}
/**
* @return bool
* @alias mysqli_multi_query
*/
public function multi_query(string $query) {}
/**
* @return bool
* @alias mysqli_more_results
*/
public function more_results() {}
/**
* @return bool
* @alias mysqli_next_result
*/
public function next_result() {}
/**
* @return bool
* @alias mysqli_ping
*/
public function ping() {}
#if defined(MYSQLI_USE_MYSQLND)
/**
* @return int|false
* @alias mysqli_poll
*/
public static function poll(?array &$read, ?array &$write, array &$error, int $sec, int $usec = 0) {}
#endif
/**
* @return mysqli_stmt|false
* @alias mysqli_prepare
*/
public function prepare(string $query) {}
/**
* @return mysqli_result|bool
* @alias mysqli_query
*/
public function query(string $query, int $resultmode = MYSQLI_STORE_RESULT) {}
/**
* @return bool
* @alias mysqli_real_connect
*/
public function real_connect(
?string $host = null,
?string $user = null,
?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null,
int $flags = 0
) {}
/**
* @return string
* @alias mysqli_real_escape_string
*/
public function real_escape_string(string $string_to_escape) {}
#if defined(MYSQLI_USE_MYSQLND)
/**
* @return mysqli_result|bool
* @alias mysqli_reap_async_query
*/
public function reap_async_query() {}
#endif
/**
* @return string
* @alias mysqli_real_escape_string
*/
public function escape_string(string $string_to_escape) {}
/**
* @return bool
* @alias mysqli_real_query
*/
public function real_query(string $query) {}
/**
* @return bool
* @alias mysqli_release_savepoint
*/
public function release_savepoint(string $name) {}
/**
* @return bool
* @alias mysqli_rollback
*/
public function rollback(int $flags = 0, ?string $name = null) {}
/**
* @return bool
* @alias mysqli_savepoint
*/
public function savepoint(string $name) {}
/**
* @return bool
* @alias mysqli_select_db
*/
public function select_db(string $database) {}
/**
* @return bool
* @alias mysqli_set_charset
*/
public function set_charset(string $charset) {}
/**
* @param string|int $value
* @return bool
* @alias mysqli_options
*/
public function options(int $option, $value) {}
/**
* @param string|int $value
* @return bool
* @alias mysqli_options
*/
public function set_opt(int $option, $value) {}
/**
* @return bool
* @alias mysqli_ssl_set
*/
public function ssl_set(
string $key,
string $cert,
string $certificate_authority,
string $certificate_authority_path,
string $cipher
) {}
/**
* @return string|false
* @alias mysqli_stat
*/
public function stat() {}
/**
* @return mysqli_stmt|false
* @alias mysqli_stmt_init
*/
public function stmt_init() {}
/**
* @return mysqli_result|false
* @alias mysqli_store_result
*/
public function store_result(int $flags = 0) {}
/**
* @return bool
* @alias mysqli_thread_safe
*/
public function thread_safe() {}
/**
* @return mysqli_result|false
* @alias mysqli_use_result
*/
public function use_result() {}
/**
* @return bool
* @alias mysqli_refresh
*/
public function refresh(int $options) {}
}
class mysqli_result implements IteratorAggregate
{
/** @alias mysqli_result_construct */
public function __construct(object $mysqli_link, int $resmode = MYSQLI_STORE_RESULT) {}
/**
* @return void
* @alias mysqli_free_result
*/
public function close() {}
/**
* @return void
* @alias mysqli_free_result
*/
public function free() {}
/**
* @return bool
* @alias mysqli_data_seek
*/
public function data_seek(int $offset) {}
/**
* @return object|false
* @alias mysqli_fetch_field
*/
public function fetch_field() {}
/**
* @return array
* @alias mysqli_fetch_fields
*/
public function fetch_fields() {}
/**
* @return object|false
* @alias mysqli_fetch_field_direct
*/
public function fetch_field_direct(int $field_nr) {}
#if defined(MYSQLI_USE_MYSQLND)
/**
* @return array|false
* @alias mysqli_fetch_all
*/
public function fetch_all(int $result_type = MYSQLI_NUM) {}
#endif
/**
* @return array|null|false
* @alias mysqli_fetch_array
*/
public function fetch_array(int $result_type = MYSQLI_BOTH) {}
/**
* @return array|null
* @alias mysqli_fetch_assoc
*/
public function fetch_assoc() {}
/**
* @return object|null
* @alias mysqli_fetch_object
*/
public function fetch_object(string $class_name = "stdClass", array $params = []) {}
/**
* @return array|null
* @alias mysqli_fetch_row
*/
public function fetch_row() {}
/**
* @return bool
* @alias mysqli_field_seek
*/
public function field_seek(int $field_nr) {}
/**
* @return void
* @alias mysqli_free_result
*/
public function free_result() {}
public function getIterator(): Iterator;
}
class mysqli_stmt
{
/** @alias mysqli_stmt_construct */
public function __construct(mysqli $mysqli_link, ?string $statement = null) {}
/**
* @return int|false
* @alias mysqli_stmt_attr_get
*/
public function attr_get(int $attr) {}
/**
* @return bool
* @alias mysqli_stmt_attr_set
*/
public function attr_set(int $attr, int $mode_in) {}
/**
* @return bool
* @alias mysqli_stmt_bind_param
*/
public function bind_param(string $types, mixed &...$vars) {}
/**
* @return bool
* @alias mysqli_stmt_bind_result
*/
public function bind_result(&...$vars) {}
/**
* @return bool
* @alias mysqli_stmt_close
*/
public function close() {}
/**
* @return bool|null
* @alias mysqli_stmt_data_seek
*/
public function data_seek(int $offset) {}
/**
* @return bool
* @alias mysqli_stmt_execute
*/
public function execute() {}
/**
* @return bool|null
* @alias mysqli_stmt_fetch
*/
public function fetch() {}
/**
* @return mysqli_warning|false
* @alias mysqli_stmt_get_warnings
*/
public function get_warnings() {}
/**
* @return mysqli_result|false
* @alias mysqli_stmt_result_metadata
*/
public function result_metadata() {}
#if defined(MYSQLI_USE_MYSQLND)
/**
* @return bool
* @alias mysqli_stmt_more_results
*/
public function more_results() {}
/**
* @return bool
* @alias mysqli_stmt_next_result
*/
public function next_result() {}
#endif
/**
* @return int|string
* @alias mysqli_stmt_num_rows
*/
public function num_rows() {}
/**
* @return bool
* @alias mysqli_stmt_send_long_data
*/
public function send_long_data(int $param_nr, string $data) {}
/**
* @return void
* @alias mysqli_stmt_free_result
*/
public function free_result() {}
/**
* @return bool
* @alias mysqli_stmt_reset
*/
public function reset() {}
/**
* @return bool
* @alias mysqli_stmt_prepare
*/
public function prepare(string $query) {}
/**
* @return bool
* @alias mysqli_stmt_store_result
*/
public function store_result() {}
#if defined(MYSQLI_USE_MYSQLND)
/**
* @return mysqli_result|false
* @alias mysqli_stmt_get_result
*/
public function get_result() {}
#endif
}
final class mysqli_warning
{
protected function __construct(object $mysqli_link) {}
public function next(): bool {}
}
final class mysqli_sql_exception extends RuntimeException
{
}
function mysqli_affected_rows(mysqli $mysql_link): int|string {}
function mysqli_autocommit(mysqli $mysql_link, bool $mode): bool {}
function mysqli_begin_transaction(mysqli $mysql_link, int $flags = 0, ?string $name = null): bool {}
function mysqli_change_user(mysqli $mysql_link, string $user, string $password, ?string $database): bool {}
function mysqli_character_set_name(mysqli $mysql_link): ?string {}
function mysqli_close(mysqli $mysql_link): bool {}
function mysqli_commit(mysqli $mysql_link, int $flags = -1, ?string $name = null): bool {}
function mysqli_connect(
?string $host = null,
?string $user = null,
?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null
): mysqli|null|false {}
function mysqli_connect_errno(): int {}
function mysqli_connect_error(): ?string {}
function mysqli_data_seek(mysqli_result $mysql_result, int $offset): bool {}
function mysqli_dump_debug_info(mysqli $mysql_link): bool {}
function mysqli_debug(string $debug): bool {}
function mysqli_errno(mysqli $mysql_link): int {}
function mysqli_error(mysqli $mysql_link): ?string {}
function mysqli_error_list(mysqli $mysql_link): array {}
function mysqli_stmt_execute(mysqli_stmt $mysql_stmt): bool {}
/** @alias mysqli_stmt_execute */
function mysqli_execute(mysqli_stmt $mysql_stmt): bool {}
function mysqli_fetch_field(mysqli_result $mysql_result): object|false {}
function mysqli_fetch_fields(mysqli_result $mysql_result): array {}
function mysqli_fetch_field_direct(mysqli_result $mysql_result, int $offset): object|false {}
function mysqli_fetch_lengths(mysqli_result $mysql_result): array|false {}
function mysqli_fetch_all(mysqli_result $mysql_result, int $mode = MYSQLI_NUM): array|false {}
function mysqli_fetch_array(mysqli_result $mysql_result, int $fetchtype = MYSQLI_BOTH): array|null|false {}
function mysqli_fetch_assoc(mysqli_result $mysql_result): ?array {}
function mysqli_fetch_object(mysqli_result $mysqli_result, string $class_name = "stdClass", array $params = []): ?object {}
function mysqli_fetch_row(mysqli_result $mysqli_result): ?array {}
function mysqli_field_count(mysqli $mysqli_link): int {}
function mysqli_field_seek(mysqli_result $mysqli_result, int $field_nr): bool {}
function mysqli_field_tell(mysqli_result $mysqli_result): int {}
function mysqli_free_result(mysqli_result $mysqli_result): void {}
function mysqli_get_connection_stats(mysqli $mysqli_link): array {}
function mysqli_get_client_stats(): array {}
function mysqli_get_charset(mysqli $mysqli_link): ?object {}
function mysqli_get_client_info(?mysqli $mysqli_link = null): ?string {}
function mysqli_get_client_version(): int {}
function mysqli_get_links_stats(): array {}
function mysqli_get_host_info(mysqli $mysqli_link): string {}
function mysqli_get_proto_info(mysqli $mysqli_link): int {}
function mysqli_get_server_info(mysqli $mysqli_link): string {}
function mysqli_get_server_version(mysqli $mysqli_link): int {}
function mysqli_get_warnings(mysqli $mysqli_link): mysqli_warning|false {}
function mysqli_init(): mysqli|false {}
function mysqli_info(mysqli $mysqli_link): ?string {}
function mysqli_insert_id(mysqli $mysqli_link): int|string {}
function mysqli_kill(mysqli $mysqli_link, int $connection_id): bool {}
function mysqli_more_results(mysqli $mysqli_link): bool {}
function mysqli_multi_query(mysqli $mysqli_link, string $query): bool {}
function mysqli_next_result(mysqli $mysqli_link): bool {}
function mysqli_num_fields(mysqli_result $mysql_result): int {}
function mysqli_num_rows(mysqli_result $mysqli_result): int|string {}
/** @param string|int $value */
function mysqli_options(mysqli $mysqli_link, int $option, $value): bool {}
function mysqli_ping(mysqli $mysqli_link): bool {}
function mysqli_poll(?array &$read, ?array &$write, array &$error, int $sec, int $usec = 0): int|false {}
function mysqli_prepare(mysqli $mysqli_link, string $query): mysqli_stmt|false {}
function mysqli_report(int $flags): bool {}
function mysqli_query(mysqli $mysqli_link, string $query, int $resultmode = MYSQLI_STORE_RESULT): mysqli_result|bool {}
function mysqli_real_connect(
mysqli $mysqli_link,
?string $host = null,
?string $user = null,
?string $password = null,
?string $database = null,
?int $port = null,
?string $socket = null,
int $flags = 0
): bool {}
function mysqli_real_escape_string(mysqli $mysqli_link, string $string_to_escape): string {}
function mysqli_real_query(mysqli $mysqli_link, string $query): bool {}
function mysqli_reap_async_query(mysqli $mysqli_link): mysqli_result|bool {}
function mysqli_release_savepoint(mysqli $mysqli_link, string $name): bool {}
function mysqli_rollback(mysqli $mysqli_link, int $flags = 0, ?string $name = null): bool {}
function mysqli_savepoint(mysqli $mysqli_link, string $name): bool {}
function mysqli_select_db(mysqli $mysqli_link, string $dbname): bool {}
function mysqli_set_charset(mysqli $mysqli_link, string $charset): bool {}
function mysqli_stmt_affected_rows(mysqli_stmt $mysql_stmt): int|string {}
function mysqli_stmt_attr_get(mysqli_stmt $mysql_stmt, int $attr): int|false {}
function mysqli_stmt_attr_set(mysqli_stmt $mysql_stmt, int $attr, int $mode_in): bool {}
function mysqli_stmt_bind_param(mysqli_stmt $mysql_stmt, string $types, mixed &...$vars): bool {}
function mysqli_stmt_bind_result(mysqli_stmt $mysql_stmt, mixed &...$vars): bool {}
function mysqli_stmt_close(mysqli_stmt $mysql_stmt): bool {}
function mysqli_stmt_data_seek(mysqli_stmt $mysql_stmt, int $offset): ?bool {}
function mysqli_stmt_errno(mysqli_stmt $mysql_stmt): int {}
function mysqli_stmt_error(mysqli_stmt $mysql_stmt): ?string {}
function mysqli_stmt_error_list(mysqli_stmt $mysql_stmt): array {}
function mysqli_stmt_fetch(mysqli_stmt $mysql_stmt): ?bool {}
function mysqli_stmt_field_count(mysqli_stmt $mysql_stmt): int {}
function mysqli_stmt_free_result(mysqli_stmt $mysql_stmt): void {}
function mysqli_stmt_get_result(mysqli_stmt $mysql_stmt): mysqli_result|false {}
function mysqli_stmt_get_warnings(mysqli_stmt $mysql_stmt): mysqli_warning|false {}
function mysqli_stmt_init(mysqli $mysql_link): mysqli_stmt|false {}
function mysqli_stmt_insert_id(mysqli_stmt $mysql_stmt): int|string {}
function mysqli_stmt_more_results(mysqli_stmt $mysql_stmt): bool {}
function mysqli_stmt_next_result(mysqli_stmt $mysql_stmt): bool {}
function mysqli_stmt_num_rows(mysqli_stmt $mysql_stmt): int|string {}
function mysqli_stmt_param_count(mysqli_stmt $mysql_stmt): int {}
function mysqli_stmt_prepare(mysqli_stmt $mysql_stmt, string $query): bool {}
function mysqli_stmt_reset(mysqli_stmt $mysql_stmt): bool {}
function mysqli_stmt_result_metadata(mysqli_stmt $mysql_stmt): mysqli_result|false {}
function mysqli_stmt_send_long_data(mysqli_stmt $mysql_stmt, int $param_nr, string $data): bool {}
function mysqli_stmt_store_result(mysqli_stmt $mysql_stmt): bool {}
function mysqli_stmt_sqlstate(mysqli_stmt $mysql_stmt): ?string {}
function mysqli_sqlstate(mysqli $mysqli_link): ?string {}
function mysqli_ssl_set(
mysqli $mysql_link,
string $key,
string $cert,
string $certificate_authority,
string $certificate_authority_path,
string $cipher
): bool {}
function mysqli_stat(mysqli $mysql_link): string|false {}
function mysqli_store_result(mysqli $mysql_link, int $flags = 0): mysqli_result|false {}
function mysqli_thread_id(mysqli $mysql_link): int {}
function mysqli_thread_safe(): bool {}
function mysqli_use_result(mysqli $mysql_link): mysqli_result|false {}
function mysqli_warning_count(mysqli $mysql_link): int {}
function mysqli_refresh(mysqli $mysqli_link, int $options): bool {}
/** @alias mysqli_real_escape_string */
function mysqli_escape_string(mysqli $mysqli_link, string $string_to_escape): string {}
/**
* @param string|int $value
* @alias mysqli_options
*/
function mysqli_set_opt(mysqli $mysqli_link, int $option, $value): bool {}