当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mysqli_kill()用法及代码示例



定义和用法

这个mysqli_kill()函数接受一个进程id作为参数,并提示MySQL服务器杀死指定的线程。

用法

mysqli_kill($con, $processid);

参数

Sr.No 参数及说明
1

con(Mandatory)

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

2

processid(Mandatory)

它是一个表示进程 ID 的整数值。

返回值

此函数返回布尔值,如果操作成功则返回 true,失败则返回 false。

PHP版本

这个函数最初是在 PHP 版本 5 中引入的,适用于所有后续版本。

示例

以下示例演示了 mysqli_kill() 函数的用法(程序风格) -

<?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
   //Creating the connection
   $con = new mysqli("localhost","root","password","test");

   $id = $con->thread_id;

   $con->kill($id);

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

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

这将产生以下结果 -

Failed.....

示例

<?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_kill($connection_mysql,$t_id);
   
   if($res){
	   print("Thread terminated successfully......");
   }
   Thread terminated successfully......
?>

这将产生以下结果 -

Thread terminated successfully......

相关用法


注:本文由纯净天空筛选整理自 PHP mysqli_kill() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。