Dutch PHP Conference 2025 - Call For Papers

mysql_thread_id

(PHP 4 >= 4.3.0, PHP 5)

mysql_thread_idReturn the current thread ID

Увага

Це розширення застаріле, починаючи з PHP 5.5.0, та вилучене з PHP 7.0.0. Натомість використовуються розширення MySQLi або PDO_MySQL. Докладніше описано у керівництві MySQL: вибір API. Цю функцію можна замінити на:

Опис

mysql_thread_id(resource $link_identifier = NULL): int|false

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

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top