(PHP 4 >= 4.3.0, PHP 5)
mysql_thread_id — Return the current thread ID
Це розширення застаріле, починаючи з PHP 5.5.0, та вилучене з PHP 7.0.0. Натомість використовуються розширення MySQLi або PDO_MySQL. Докладніше описано у керівництві MySQL: вибір API. Цю функцію можна замінити на:
Retrieves the current thread ID. If the connection is lost, and a reconnect with mysql_ping() is executed, the thread ID will change. This means only retrieve the thread ID when needed.
link_identifier
З'єднання
MySQL. Якщо не задано, буде обрано останнє з'єднання, встановлене функцією
mysql_connect(). Якщо з'єднатися не вдалось, функція
спробує встановити нове, ніби викликавши функцію
mysql_connect() без параметрів. Якщо з'єднання не
вдалося знайти або встановити, буде виведено повідомлення рівня
E_WARNING
The thread ID on success або false
в разі помилки.
Приклад #1 mysql_thread_id() example
<?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