mysql_thread_id

(PHP 4 >= 4.3.0, PHP 5)

mysql_thread_idReturn the current thread ID

Aviso

Esta extensão tornou-se defasada a partir do PHP 5.5.0 e foi removida no PHP 7.0.0. Em vez disso, as extensões MySQLi ou PDO_MySQL devem ser usadas. Veja também o guia MySQL: escolhendo uma API. Alternativas a esta função incluem:

Descrição

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.

Parâmetros

link_identifier

A conexão MySQL. Se o identificador da conexão não for especificado, a última conexão aberta por mysql_connect() será usada. Se não houver uma conexão anterior, haverá uma tentativa de criar uma como se mysql_connect() tivesse sido chamada sem argumentos. Se nenhuma conexão for encontrada ou estabelecida, um erro de nível E_WARNING será gerado.

Valor Retornado

The thread ID on success ou false em caso de falha.

Exemplos

Exemplo #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);
}
?>

O exemplo acima produzirá algo semelhante a:

current thread id is 73

Veja Também

add a note add a note

User Contributed Notes

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