(PHP 5, PHP 7, PHP 8)
mysqli::$thread_id -- mysqli_thread_id — 返回当前连接的线程 ID
面向对象风格
过程式风格
mysqli_thread_id() 函数返回当前连接的线程 ID,然后可以使用 mysqli_kill() 函数将其终止。如果连接丢失并且您使用 mysqli_ping() 重新连接,则线程 ID 将不同。因此,您应该仅在需要时获取线程 ID。
注意:
线程 ID 是逐个连接分配的。因此,如果连接断开然后重新建立,则会分配新的线程 ID。
要终止正在运行的查询,可以使用 SQL 命令
KILL QUERY processid
。
返回当前连接的线程 ID。
示例 #1 $mysqli->thread_id 示例
面向对象风格
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* 检查连接 */
if (mysqli_connect_errno()) {
printf("连接失败: %s\n", mysqli_connect_error());
exit();
}
/* 确定我们的线程 ID */
$thread_id = $mysqli->thread_id;
/* 关闭连接 */
$mysqli->kill($thread_id);
/* 这应该会产生错误 */
if (!$mysqli->query("CREATE TABLE myCity LIKE City")) {
printf("错误: %s\n", $mysqli->error);
exit;
}
/* 关闭连接 */
$mysqli->close();
?>
过程式风格
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 检查连接 */
if (mysqli_connect_errno()) {
printf("连接失败: %s\n", mysqli_connect_error());
exit();
}
/* 确定我们的线程 ID */
$thread_id = mysqli_thread_id($link);
/* 关闭连接 */
mysqli_kill($link, $thread_id);
/* 这应该会产生错误 */
if (!mysqli_query($link, "CREATE TABLE myCity LIKE City")) {
printf("错误: %s\n", mysqli_error($link));
exit;
}
/* 关闭连接 */
mysqli_close($link);
?>
以上示例将输出
Error: MySQL server has gone away