Identification

Worker::getThreadId

(PECL pthreads >= 0.36)

Worker::getThreadIdIdentification

Description

final public long Worker::getThreadId ( void )

Will return the identity of the referenced Worker

Parameters

This function has no parameters.

Return Values

A numeric identity

Examples

Example #1 Return the identity of the referenced Worker

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

The above example will output:

My is Worker #123456778899


Customers Area | Contact us | Affiliates