當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP mysqli_thread_id()用法及代碼示例



定義和用法

這個mysqli_thread_id()函數接受一個連接對象並返回給定連接的線程 ID。

用法

mysqli_thread_id($con);

參數

Sr.No 參數及說明
1

con(Mandatory)

這是一個表示與 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 mysqli_thread_id() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。