PHP mysqli_thread_id() 函数



定义和用法

mysqli_thread_id() 函数接受一个连接对象并返回给定连接的线程 ID。

语法

mysqli_thread_id($con);

参数

序号 参数和描述
1

con(必填)

这是一个表示与 MySQL 服务器连接的对象。

返回值

此函数返回一个整数值,表示当前连接的线程 ID。

PHP 版本

此函数首次引入于 PHP 5 版本,并在所有后续版本中均有效。

示例

以下示例演示了 mysqli_thread_id() 函数(在过程式风格中)的用法 -

<?php
   //Creating the connection
   $con = mysqli_connect("localhost","root","password","test");

   //Id of the current thread
   $id = mysqli_thread_id($con);
   print("Current thread id: ".$id);
?>

这将产生以下结果 -

Current thread id: 55

示例

在面向对象风格中,此函数的语法为 $con->thread_id; 以下是此函数在面向对象风格中的示例 $minus;

<?php
   //Creating the connection
   $con = new mysqli("localhost","root","password","test");

   //Current thread id
   $id = $con->thread_id;

   print("Current thread id: ".$id);
?>

这将产生以下结果 -

Current thread id: 55

示例

以下是此函数的另一个示例,它重试当前线程的 ID 并将其终止 $minus;

<?php
   //Creating the connection
   $con = mysqli_connect("localhost","root","password","test");

   $id = mysqli_thread_id($con);

   mysqli_kill($con, $id);

   $res = mysqli_query($con, "CREATE TABLE Sample (name VARCHAR(255))");

   if($res){
      print("Successful.....");
   }else{
      print("Failed......");
   }
?>

这将产生以下结果 -

Failed.....

示例

在面向对象风格中,此函数的语法为 $con->kill(); 以下是此函数在面向对象风格中的示例 $minus;

<?php
   $connection_mysql=mysqli_connect("localhost","root","password","mydb");
   
   if (mysqli_connect_errno($connection_mysql)){
      echo "Failed to connect to MySQL: " . mysqli_connect_error();
   }
   
   $t_id = mysqli_thread_id($connection_mysql);
   
   $res = mysqli_thread_id($connection_mysql,$t_id);
   
   if($res){
	   print("Thread terminated successfully......");
   }
?>

这将产生以下结果 -

Thread terminated successfully......
php_function_reference.htm
广告