CakeFest 2025 Madrid: The Official CakePHP Conference

Thread::getCurrentThreadId

(PECL pthreads >= 2.0.0)

Thread::getCurrentThreadIdIdentification

Açıklama

public static Thread::getCurrentThreadId(): int

Will return the identity of the currently executing Thread

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

A numeric identity

Örnekler

Örnek 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();
?>

Yukarıdaki örneğin çıktısı:

My is Thread #123456778899

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top