PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.4Mb
HTML Download (TGZ)
- 251.4Kb
HTML Download (Zip)
- 258.8Kb
- 3.9.1
mysqli_stmt::$affected_rows
,mysqli_stmt_affected_rows
- 3.9.2
mysqli_stmt::attr_get
,mysqli_stmt_attr_get
- 3.9.3
mysqli_stmt::attr_set
,mysqli_stmt_attr_set
- 3.9.4
mysqli_stmt::bind_param
,mysqli_stmt_bind_param
- 3.9.5
mysqli_stmt::bind_result
,mysqli_stmt_bind_result
- 3.9.6
mysqli_stmt::close
,mysqli_stmt_close
- 3.9.7
mysqli_stmt::__construct
- 3.9.8
mysqli_stmt::data_seek
,mysqli_stmt_data_seek
- 3.9.9
mysqli_stmt::$errno
,mysqli_stmt_errno
- 3.9.10
mysqli_stmt::$error_list
,mysqli_stmt_error_list
- 3.9.11
mysqli_stmt::$error
,mysqli_stmt_error
- 3.9.12
mysqli_stmt::execute
,mysqli_stmt_execute
- 3.9.13
mysqli_stmt::fetch
,mysqli_stmt_fetch
- 3.9.14
mysqli_stmt::$field_count
,mysqli_stmt_field_count
- 3.9.15
mysqli_stmt::free_result
,mysqli_stmt_free_result
- 3.9.16
mysqli_stmt::get_result
,mysqli_stmt_get_result
- 3.9.17
mysqli_stmt::get_warnings
,mysqli_stmt_get_warnings
- 3.9.18
mysqli_stmt::$insert_id
,mysqli_stmt_insert_id
- 3.9.19
mysqli_stmt::more_results
,mysqli_stmt_more_results
- 3.9.20
mysqli_stmt::next_result
,mysqli_stmt_next_result
- 3.9.21
mysqli_stmt::$num_rows
,mysqli_stmt::num_rows
,mysqli_stmt_num_rows
- 3.9.22
mysqli_stmt::$param_count
,mysqli_stmt_param_count
- 3.9.23
mysqli_stmt::prepare
,mysqli_stmt_prepare
- 3.9.24
mysqli_stmt::reset
,mysqli_stmt_reset
- 3.9.25
mysqli_stmt::result_metadata
,mysqli_stmt_result_metadata
- 3.9.26
mysqli_stmt::send_long_data
,mysqli_stmt_send_long_data
- 3.9.27
mysqli_stmt::$sqlstate
,mysqli_stmt_sqlstate
- 3.9.28
mysqli_stmt::store_result
,mysqli_stmt_store_result
Copyright 1997-2021 the PHP Documentation Group.
Represents a prepared statement.
mysqli_stmt {
mysqli_stmt Propertiesint mysqli_stmt->affected_rows ;
int mysqli_stmt->errno ;
array mysqli_stmt->error_list ;
string mysqli_stmt->error ;
int mysqli_stmt->field_count ;
int mysqli_stmt->insert_id ;
int mysqli_stmt->num_rows ;
int mysqli_stmt->param_count ;
string mysqli_stmt->sqlstate ;
Methodspublic mysqli_stmt::__construct(mysqli link,
string query);public int mysqli_stmt::attr_get(int attr);
public bool mysqli_stmt::attr_set(int attr,
int mode);public bool mysqli_stmt::bind_param(string types,
mixed var,
mixed vars);public bool mysqli_stmt::bind_result(mixed var,
mixed vars);public bool mysqli_stmt::close();
public void mysqli_stmt::data_seek(int offset);
public bool mysqli_stmt::execute();
public bool mysqli_stmt::fetch();
public void mysqli_stmt::free_result();
public mysqli_result mysqli_stmt::get_result();
public object mysqli_stmt::get_warnings();
public bool mysqli_stmt::more_results();
public bool mysqli_stmt::next_result();
public int mysqli_stmt::num_rows();
public mixed mysqli_stmt::prepare(string query);
public bool mysqli_stmt::reset();
public mysqli_result mysqli_stmt::result_metadata();
public bool mysqli_stmt::send_long_data(int param_nr,
string data);public bool mysqli_stmt::store_result();
}