PHP 8.3.4 Released!

Thread::isJoined

(PECL pthreads >= 2.0.0)

Thread::isJoined状態を検出する

説明

public Thread::isJoined(): bool

このスレッドが同期されているかどうかを調べます。

パラメータ

この関数にはパラメータはありません。

戻り値

成功した場合に true を、失敗した場合に false を返します。

例1 スレッドの状態を検出する

<?php
class My extends Thread {
public function
run() {
$this->synchronized(function($thread){
if (!
$thread->done)
$thread->wait();
},
$this);
}
}
$my = new My();
$my->start();
var_dump($my->isJoined());
$my->synchronized(function($thread){
$thread->done = true;
$thread->notify();
},
$my);
?>

上の例の出力は以下となります。

bool(false)

add a note

User Contributed Notes

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