mysql_thread_id
(PHP 4 >= 4.3.0, PHP 5)
mysql_thread_id — 返回当前线程的 ID
<h3>说明</h3>
int <strong>mysql_thread_id</strong>
([ resource <code>$link_identifier</code>
] )
<p>
<strong>mysql_thread_id()</strong>
返回当前线程的
ID。如果连接丢失了并用
mysql_ping()
重新连接上,线程 ID 会改变。这意味着不能取得线程的
ID 后保存起来备用。当需要的时候再去获取之。
</p>
<p>
<p><strong>Example #1 <strong>mysql_thread_id()</strong> 例子</strong></p>
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
$thread_id = mysql_thread_id($link);
if ($thread_id){
printf ("current thread id is %dn", $thread_id);
}
?>
<p>
以上例子将产生如下输出:
</p>
current thread id is 73
</p>
<p>
参见
mysql_ping() 和
mysql_list_processes()。
</p>