Thread::getCurrentThreadId

(PECL pthreads >= 2.0.0)

Thread::getCurrentThreadIdIdentification

Descrição

publicstaticThread::getCurrentThreadId(): int

Will return the identity of the currently executing Thread

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

A numeric identity

Exemplos

Exemplo #1 Return the identity of the currently executing Thread

<?php
class My extends Thread {
public function
run() {
printf("%s is Thread #%lu\n", __CLASS__, Thread::getCurrentThreadId());
}
}
$my = new My();
$my->start();
?>

O exemplo acima produzirá:

My is Thread #123456778899
To Top