PHP Tutorial





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
PHP Topics
Introduction Introduction
Syntax Syntax
Data Types Data Types
Operators Operators
Control Structures Control Structures
Functions Functions
Pre-defined Function Pre-defined Function
Calendar Functions Calendar Functions
Date and Time Date and Time
Array Functions Array Functions
Array List Array Functions List1
Array Function List Array Functions List2
Math Functions Math Functions
PHP MYSQL Functions PHP Mysql Functions
File Handling File Handling
Error Handling Error Handling
DB Size DB Size
PHP Mail PHP Mail
String Tokens String Tokens
String Functions String Functions
String Functions List String Functions List1
String Functions List2 String Functions List2
Session Functions Session Functions
Cookies Functions Cookies Functions
Form Variables Form Variables
Running PHP from JS Running PHP from JS
Array To JS Array To JS
JS Array Array to PHP
Encryption Encryption
Common Header Common Header
Forums Ask Your Doubts
Scraps More about PHP
Feedback Feedback
 




mysql_thread_id() function for PHP


Tutorials »Php »

Topic

What is mysql_thread_id() function in PHP?
How does mysql_thread_id() works?




Explanation

Mysql function mysql_thread_id() can returns the current thread ID.

Syntax

int mysql_thread_id ( [ resource link_identifier ])

Returns thread ID on success, or FALSE on failure.

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 retrieve the thread ID only when needed i.e, you should not get the thread ID and store it for later. You should get it when you need it..

If the link identifier is not specified, the last link opened by mysql_connect() is assumed. If no such link is found, it will try to create one as if mysql_connect() was called with no arguments. If by chance no connection is found or established, an E_WARNING level warning is generated.

Example:


<?php

$link = mysql_pconnect("mysql_host", "mysql_user", "mysql_password")
or die ("Could not connect");

//retrieve current thread id
$thread_id = mysql_thread_id($link);

if ($thread_id){
printf("current thread id is %d\n", $thread_id);
}

?>



RESULT:

current thread id is 12

See also: mysql_ping() and mysql_list_processes().





Other Links

web hosting