mysqli 类
(PHP 5, PHP 7, PHP 8)
简介
代表 PHP 与 MySQL 数据库之间的连接。
类摘要
class mysqli
{
/* 属性 */
/* 方法 */
public __construct(
?string
?string
#[\SensitiveParameter] ?string
?string
?int
?string
)
?string
$hostname
= null
,?string
$username
= null
,#[\SensitiveParameter] ?string
$password
= null
,?string
$database
= null
,?int
$port
= null
,?string
$socket
= null
)
public change_user(string
$username
, #[\SensitiveParameter] string $password
, ?string $database
): boolpublic connect(
?string
?string
#[\SensitiveParameter] ?string
?string
?int
?string
): bool
?string
$hostname
= null
,?string
$username
= null
,#[\SensitiveParameter] ?string
$password
= null
,?string
$database
= null
,?int
$port
= null
,?string
$socket
= null
): bool
public static poll(
?array
?array
array
int
int
): int|false
?array
&$read
,?array
&$error
,array
&$reject
,int
$seconds
,int
$microseconds
= 0): int|false
public real_connect(
?string
?string
#[\SensitiveParameter] ?string
?string
?int
?string
int
): bool
}?string
$hostname
= null
,?string
$username
= null
,#[\SensitiveParameter] ?string
$password
= null
,?string
$database
= null
,?int
$port
= null
,?string
$socket
= null
,int
$flags
= 0): bool
目录
- mysqli::$affected_rows — Gets the number of affected rows in a previous MySQL operation
- mysqli::autocommit — 打开或关闭本次数据库连接的自动命令提交事务模式
- mysqli::begin_transaction — Starts a transaction
- mysqli::change_user — Changes the user of the database connection
- mysqli::character_set_name — 返回当前数据库连接的字符编码
- mysqli::close — 关闭先前打开的数据库连接
- mysqli::commit — 提交当前事务
- mysqli::$connect_errno — Returns the error code from last connect call
- mysqli::$connect_error — Returns a description of the last connection error
- mysqli::__construct — Open a new connection to the MySQL server
- mysqli::debug — Performs debugging operations
- mysqli::dump_debug_info — 将调试信息输出到日志
- mysqli::$errno — 返回最近函数调用的错误代码
- mysqli::$error — Returns a string description of the last error
- mysqli::$error_list — Returns a list of errors from the last command executed
- mysqli::execute_query — Prepares, binds parameters, and executes SQL statement
- mysqli::$field_count — Returns the number of columns for the most recent query
- mysqli::get_charset — Returns a character set object
- mysqli::$client_info — 获取 MySQL 客户端信息
- mysqli::$client_version — 作为整数返回 MySQL 客户端的版本
- mysqli::get_connection_stats — 返回客户端连接的统计数据
- mysqli::$host_info — 返回表述使用的连接类型的字符串
- mysqli::$protocol_version — 返回 MySQL 协议使用的版本号
- mysqli::$server_info — 返回 MySQL 服务器的版本号
- mysqli::$server_version — 作为一个整数返回MySQL服务器的版本
- mysqli::get_warnings — Get result of SHOW WARNINGS
- mysqli::$info — 返回最近执行的 SQL 语句的信息
- mysqli::init — 初始化 MySQLi 并返回用于 mysqli_real_connect() 的对象
- mysqli::$insert_id — 返回上次查询为 AUTO_INCREMENT 列生成的值
- mysqli::kill — 让服务器杀死一个 MySQL 线程
- mysqli::more_results — 检查批量查询中是否还有查询结果
- mysqli::multi_query — 在数据库上执行一个或多个查询
- mysqli::next_result — 为读取 multi_query 执行之后的下一个结果集做准备
- mysqli::options — 设置选项
- mysqli::ping — ping 一个连接,或者如果连接处于断开状态,重新连接
- mysqli::poll — 轮询连接
- mysqli::prepare — 预处理执行 SQL
- mysqli::query — 对数据库执行查询
- mysqli::real_connect — 建立一个 MySQL 服务器连接
- mysqli::real_escape_string — 根据当前连接的字符集,对于 SQL 语句中的特殊字符进行转义
- mysqli::real_query — 执行一个mysql查询
- mysqli::reap_async_query — 获取异步查询的结果
- mysqli::refresh — 刷新
- mysqli::release_savepoint — 从当前事务的保存点中移除一个命名保存点
- mysqli::rollback — 回滚当前事务
- mysqli::savepoint — 在当前事务中设置命名保存点
- mysqli::select_db — 选择用于数据库查询的默认数据库
- mysqli::set_charset — 设置客户端字符集
- mysqli::$sqlstate — 返回上一次 MySQL 操作的 SQLSTATE 错误
- mysqli::ssl_set — 用于使用 SSL 建立安全连接
- mysqli::stat — 获取当前系统状态信息
- mysqli::stmt_init — 初始化语句并返回用于 mysqli_stmt_prepare(调用)的对象
- mysqli::store_result — 传输上次查询的结果集
- mysqli::$thread_id — 返回当前连接的线程 ID
- mysqli::thread_safe — 返回是否线程安全
- mysqli::use_result — Initiate a result set retrieval
- mysqli::$warning_count — Returns the number of warnings generated by the most recently executed query
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。