PHP MySQLi 函数

PHP mysqli_stmt 类表示准备好的语句。

类概要

class mysqli_stmt {
  //特性
  int|string $affected_rows;
  int $errno;
  array $error_list;
  string $error;
  int $field_count;
  int $insert_id;
  int|string $num_rows;
  int $param_count;
  string $sqlstate;

  //方法
  public __construct(mysqli $mysql, ?string $query = null)
  public attr_get(int $attribute): int
  public attr_set(int $attribute, int $value): bool
  public bind_param(string $types, mixed &$var, mixed &...$vars): bool
  public bind_result(mixed &$var, mixed &...$vars): bool
  public close(): bool
  public data_seek(int $offset): void
  public execute(?array $params = null): bool
  public fetch(): ?bool
  public free_result(): void
  public get_result(): mysqli_result|false
  public get_warnings(): mysqli_warning|false
  public more_results(): bool
  public next_result(): bool
  public num_rows(): int|string
  public prepare(string $query): bool
  public reset(): bool
  public result_metadata(): mysqli_result|false
  public send_long_data(int $param_num, string $data): bool
  public store_result(): bool
}
  • 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