The mysqli_stmt class

(PHP 5, PHP 7, PHP 8)

Giriş

Represents a prepared statement.

Sınıf Sözdizimi

class mysqli_stmt {
/* Özellikler */
public readonly int|string $affected_rows;
public readonly int|string $insert_id;
public readonly int|string $num_rows;
public readonly int $param_count;
public readonly int $field_count;
public readonly int $errno;
public readonly string $error;
public readonly array $error_list;
public readonly string $sqlstate;
public int $id;
/* Yöntemler */
public function __construct(mysqli $mysql, ?string $query = null)
public function attr_get(int $attribute): int
public function attr_set(int $attribute, int $value): bool
public function bind_param(string $types, mixed &$var, mixed &...$vars): bool
public function bind_result(mixed &$var, mixed &...$vars): bool
public function close(): true
public function data_seek(int $offset): void
public function execute(?array $params = null): bool
public function fetch(): ?bool
public function free_result(): void
public function get_result(): mysqli_result|false
public function get_warnings(): mysqli_warning|false
public function more_results(): bool
public function next_result(): bool
public function num_rows(): int|string
public function prepare(string $query): bool
public function reset(): bool
public function send_long_data(int $param_num, string $data): bool
public function store_result(): bool
}

Özellikler

id

Stores the statement ID.

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top