Results of 1 - 10 of about 83 for thread (0.001 sec.)
- Identification 9699
- « Thread::getCreatorId Thread::getCurrentThreadId » PHP Manual Thread Identification Thread::get
...
CurrentThread (PECL pthreads >= 2.0.0) Thread::getCurrentThread ...
— Identification 説明 public static Thread::getCurrentThread (): Thread Return a reference to ...
the currently executing Thread パラメータ この関数にはパラメータはありません。 戻 ...
り値 An object representing the currently executing Thread 例 例1 Return the currently executing Thread <?php ...
-
https://man.plustar.jp/php/thread.getcurrentthread.html
- [similar]
- Identification 9672
- « Thread::getCurrentThread Thread::getThreadId » PHP Manual Thread Identification Thread::getCur
...
rentThreadId (PECL pthreads >= 2.0.0) Thread::getCurrentThrea ...
dId — Identification 説明 public static Thread::getCurrentThreadId (): int Will return the identi ...
ty of the currently executing Thread パラメータ この関数にはパラメータはありません。 戻 ...
例1 Return the identity of the currently executing Thread <?php class My extends Thread { public function ru ...
-
https://man.plustar.jp/php/thread.getcurrentthreadid.html
- [similar]
- 状態を検出する 9618
- « Thread::getThreadId Thread::isStarted » PHP Manual Thread 状態を検出する Thread::isJoined (PEC
...
L pthreads >= 2.0.0) Thread::isJoined — 状態を検出する 説明 ...
public Thread::isJoined (): bool このスレッドが同期されているかど ...
例1 スレッドの状態を検出する <?php class My extends Thread { public function run () { $this -> synchronized ( ...
function( $thread ){ if (! $thread -> done ) $thread -> wait (); }, ...
-
https://man.plustar.jp/php/thread.isjoined.html
- [similar]
- Thread クラス 9591
- « Threaded::wait Thread::getCreatorId » PHP Manual pthreads Thread クラス Thread クラス (PECL pthread
...
スレッドで並列処理されます。 run メソッドの実行後は Thread はすぐに終了し、作成元のスレッドに適切な時期に joi ...
n します。 警告 Thread をいつ join させるのかをエンジンに決めさせていると ...
明示的に指定するようにしましょう。 クラス概要 class Thread extends Threaded implements Countable , Traversabl ...
ublic getCreatorId (): int public static getCurrentThread (): Thread public static getCurrentThreadId (): in ...
-
https://man.plustar.jp/php/class.thread.html
- [similar]
- 識別 9360
- « Thread::getCurrentThreadId Thread::isJoined » PHP Manual Thread 識別 Thread::getThreadId (PECL
...
pthreads >= 2.0.0) Thread::getThreadId — 識別 説明 public ...
Thread::getThreadId (): int このスレッドの ID を返します。 パラメータ ...
例1 このスレッドの ID を返す <?php class My extends Thread { public function run () { printf ( "%s is Thread ...
#%lu\n" , __CLASS__ , $this -> getThreadId ()); } } $my = new My (); $my -> start (); ?> 上 ...
-
https://man.plustar.jp/php/thread.getthreadid.html
- [similar]
- 識別 9306
- « Thread Thread::getCurrentThread » PHP Manual Thread 識別 Thread::getCreatorId (PECL pthreads >
...
= 2.0.0) Thread::getCreatorId — 識別 説明 public Thread::getCreato ...
あるいはプロセスの ID を返す <?php class My extends Thread { public function run () { printf ( "%s created by ...
Thread #%lu\n" , __CLASS__ , $this -> getCreatorId ()); } ...
); ?> 上の例の出力は以下となります。 My created by Thread #123456778899 関連キーワード: 識別 , Thread , getC ...
-
https://man.plustar.jp/php/thread.getcreatorid.html
- [similar]
- pthreads 9265
- « parallel\Sync::__invoke はじめに » PHP Manual プロセス制御 pthreads pthreads はじめに インスト
...
/設定 要件 インストール手順 実行時設定 定義済み定数 Threaded — The Threaded class Threaded::chunk — Manipulat ...
ion Threaded::count — Manipulation Threaded::extend — Runtime ...
Manipulation Threaded::isRunning — State Detection Threaded::isTermina ...
ted — State Detection Threaded::merge — Manipulation Threaded::notify — Synchro ...
-
https://man.plustar.jp/php/book.pthreads.html
- [similar]
- 現在のスレッドの一意な ID を返す 9265
- « version_compare zend_version » PHP Manual PHP オプション/情報 関数 現在のスレッドの一意な ID を
...
返す zend_thread_id (PHP 5, PHP 7, PHP 8) zend_thread_id — 現在のス ...
レッドの一意な ID を返す 説明 zend_thread_id (): int この関数は、現在のスレッドの一意な ID を ...
スレッドの ID を表す整数値を返します。 例 例1 zend_thread_id() の例 <?php $thread_id = zend_thread_id (); ec ...
ho 'Current thread id is: ' . $thread_id ; ?> 上の例の出力は、 たとえ ...
-
https://man.plustar.jp/php/function.zend-thread-id.html
- [similar]
- 現在の接続のスレッド ID を返す 9265
- « mysqli::store_result mysqli::thread_safe » PHP Manual mysqli 現在の接続のスレッド ID を返す my
...
sqli::$thread_id mysqli_thread_id (PHP 5, PHP 7, PHP 8) mysqli:: ...
$thread_id -- mysqli_thread_id — 現在の接続のスレッド ID を ...
返す 説明 オブジェクト指向型 int $mysqli->thread_id ; 手続き型 mysqli_thread_id ( mysqli $mysql ): ...
int mysqli_thread_id() 関数は、現在の接続の スレッド ID を返します。 ...
-
https://man.plustar.jp/php/mysqli.thread-id.html
- [similar]
- Synchronization 9265
- « Threaded::synchronized Thread » PHP Manual Threaded Synchronization Threaded::wait (PECL pthread
...
ads >= 2.0.0) Threaded::wait — Synchronization 説明 public Threaded::wa ...
1 Notifications and Waiting <?php class My extends Thread { public function run () { /** cause this thread t ...
o wait **/ $this -> synchronized (function( $thread ){ if (! $thread -> done ) $thread -> wait (); }, ...
-> start (); /** send notification to the waiting thread **/ $my -> synchronized (function( $thread ){ $thr ...
-
https://man.plustar.jp/php/threaded.wait.html
- [similar]