PHP Velho Oeste 2024

Thread::getCreatorId

(PECL pthreads >= 2.0.0)

Thread::getCreatorIdIdentification

Description

public Thread::getCreatorId(): int

Will return the identity of the Thread that created the referenced Thread

Parameters

This function has no parameters.

Return Values

A numeric identity

Examples

Example #1 Return the identity of the Thread or Process that created the referenced Thread

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

The above example will output:

My created by Thread #123456778899

add a note add a note

User Contributed Notes 1 note

up
0
312036773 at qq dot com
8 years ago
creatorId == currentThreadId()?  Does it go wrong? Why??????

class demo1 extends Thread{
    public function __construct(){
        var_dump(Thread::getCurrentThread());
        echo "<br/><br/>";
    }
    public function run(){
        echo __METHOD__ . Thread::getCurrentThreadId() . "<br/>";
        echo __METHOD__ . $this->getCreatorId() . "<Br/>";
    }
}

class demo2 extends Thread{
    public function __construct(){

    }
    public function run(){
        var_dump(Thread::getCurrentThread());
        echo "<br/><br/>";
        echo __METHOD__ . Thread::getCurrentThreadId() . "<br/>";
        $d1 = new Demo1();
        $d1->start();
    }
}

$d2 = new Demo2;
$d2->start();

The Result is:

object(demo2)#2 (0) { }

demo2::run6684
object(demo2)#3 (0) { }

demo1::run484
demo1::run484

creatorId == currentThreadId()?

it goes wrong? Why??????
To Top