Thread::getThreadId

(PECL pthreads >= 2.0.0)

Thread::getThreadIdIdentification

Descrição

public Thread::getThreadId(): int

Will return the identity of the referenced Thread

Parâmetros

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

Valor Retornado

A numeric identity

Exemplos

Example #1 Return the identity of the referenced Thread

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

O exemplo acima produzirá:

My is Thread #123456778899