略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: mysql_thread_id

2024-04-30

mysql_thread_id

(PHP 4 >= 4.3.0, PHP 5)

mysql_thread_id返回当前线程的 ID

说明

mysql_thread_id(resource $link_identifier = ?): int

mysql_thread_id() 返回当前线程的 ID。如果连接丢失了并用 mysql_ping() 重新连接上,线程 ID 会改变。这意味着不能取得线程的 ID 后保存起来备用。当需要的时候再去获取之。

示例 #1 mysql_thread_id() 例子

<?php
$link 
mysql_connect('localhost''mysql_user''mysql_password');
$thread_id mysql_thread_id($link);
if (
$thread_id){
    
printf ("current thread id is %d\n"$thread_id);
}
?>

以上例子将产生如下输出:

current thread id is 73

参见 mysql_ping()mysql_list_processes()

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.mysql-thread-id.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3