検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 52 for pid (0.016 sec.)
EvChild ウォッチャーオブジェクトを作る 12441
« EvChild EvChild::createStopped » PHP Manual EvChild EvChild ウォッチャーオブジェクトを作る EvC ... ェクトを作る 説明 public EvChild::__construct ( int $pid , bool $trace , callable $callback , mixed $data = ... d ウォッチャーオブジェクトを作ります。 プロセス ID pid ( pid is 0 の場合は任意の PID ) の状態の変更を受信 ... ロセスが終了するかもしれません。 そのときは、新しい PID の親にだけ EvChild ウォッチャーをインストールできま ... す。 exit/tracing ステータスや pid にアクセスするには、 ウォッチャーオブジェクトのプロ ...
https://man.plustar.jp/php/evchild.construct.html - [similar]
サーバのPIDを取得する 11798
« PDO::pgsqlGetNotify PDO::pgsqlLOBCreate » PHP Manual PostgreSQL (PDO) サーバのPIDを取得する PD ... O::pgsqlGetPid (PHP 5 >= 5.6.0, PHP 7, PHP 8) PDO::pgsqlGetPid... サーバのPIDを取得する 説明 public PDO::pgsqlGetPid (): int サー ... バのPIDを返します。 パラメータ この関数にはパラメータはあり ... ません。 戻り値 サーバのPIDを返します。 関連キーワード: サーバ , PID , 取得 , P ...
https://man.plustar.jp/php/pdo.pgsqlgetpid.html - [similar]
バックエンドのプロセス ID を得る 11350
« pg_get_notify pg_get_result » PHP Manual PostgreSQL 関数 バックエンドのプロセス ID を得る pg_g ... et_pid (PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8) pg_get_pid... バックエンドのプロセス ID を得る 説明 pg_get_pid ( PgSql\Connection $connection ): int pg_get_pid() ... 期待していました。 例 例1 PostgreSQL バックエンドの PID <?php $conn = pg_pconnect ( "dbname=publisher" ); ... セスIDを取得。このプロセスIDをpg_get_notify()で使用 $pid = pg_get_pid ( $conn ); ?> 参考 pg_get_notify() - ...
https://man.plustar.jp/php/function.pg-get-pid.html - [similar]
Send signal to the child process. 9872
« Swoole\Process::freeQueue Swoole\Process::name » PHP Manual Swoole\Process Send signal to the ... ss. 説明 public static Swoole\Process::kill ( int $pid , int $signal_no = ? ): bool Send signal to the ch ... ild process. パラメータ pid Process pid signal_no Signal to be sent 戻り値 成功 ... Send , hild , process , Process , Swoole , kill , pid , int , freeQueue , swoole ...
https://man.plustar.jp/php/swoole-process.kill.html - [similar]
現在実行中のプロセスをフォークする 9812
« pcntl_exec pcntl_get_last_error » PHP Manual PCNTL 関数 現在実行中のプロセスをフォークする pcn ... fork (): int pcntl_fork() 関数は、親プロセスとその PID および PPID のみが異なる子プロセスを生成します。シ ... ラメータはありません。 戻り値 成功時に、子プロセスの PID が親プロセスの実行スレッドに返され、 子プロセスの実 ... ーが 出力されます。 例 例1 pcntl_fork() の例 <?php $pid = pcntl_fork (); if ( $pid == - 1 ) { die( 'fork で ... きません' ); } else if ( $pid ) { // 親プロセスの場合 pcntl_wait ( $status ); // ...
https://man.plustar.jp/php/function.pcntl-fork.html - [similar]
プロセスのタイトルを設定する 9498
« cli_get_process_title dl » PHP Manual PHP オプション/情報 関数 プロセスのタイトルを設定する cl ... e() の例 <?php $title = "My Amazing PHP Script" ; $pid = getmypid (); // これを使えば、プロセスのタイトル ... $title )) { echo "Unable to set process title for PID $pid ...\n" ; exit( 1 ); } else { echo "The proces ... s title ' $title ' for PID $pid has been set for your process!\n" ; sleep ( 5 ...
https://man.plustar.jp/php/function.cli-set-process-title.html - [similar]
接続された、区別できないソケットストリームの組を作成する 9364
« stream_socket_get_name stream_socket_recvfrom » PHP Manual ストリーム 関数 接続された、区別でき ... _UNIX , STREAM_SOCK_STREAM , STREAM_IPPROTO_IP ); $pid = pcntl_fork (); if ( $pid == - 1 ) { die( 'フォー ... クできません' ); } else if ( $pid ) { /* 親プロセス */ fclose ( $sockets [ 0 ]); fwr ... ite ( $sockets [ 1 ], "子プロセスの PID: $pid \n" ); echo fgets ( $sockets [ 1 ]); fclose ... 出力は、 たとえば以下のようになります。 子プロセスの PID: 1378 子プロセスからのメッセージ 関連キーワード: ス ...
https://man.plustar.jp/php/function.stream-socket-pair.html - [similar]
The EvChild class 9304
« EvCheck::createStopped EvChild::__construct » PHP Manual Ev The EvChild class The EvChild clas ... hild extends EvWatcher { /* プロパティ */ public $ pid ; public $ rpid ; public $ rstatus ; /* 継承したプ ... riority ; /* メソッド */ public __construct ( int $pid , bool $trace , callable $callback , mixed $data = ... ity = 0 ) final public static createStopped ( int $pid , bool $trace , callable $callback , mixed $data = ... ? , int $priority = ? ): object public set ( int $pid , bool $trace ): void /* 継承したメソッド */ publi ...
https://man.plustar.jp/php/class.evchild.html - [similar]
プロセスのリソースを管理する 9110
« pcntl_getpriority pcntl_setpriority » PHP Manual PCNTL 関数 プロセスのリソースを管理する pcntl ... 戻り値 成功時には、親スレッドの実行時に子プロセスのPIDを返し、 子のスレッド実行時に 0 を返します。 失敗時に ... ラーが発生します。 例 例1 pcntl_rfork() の例 <?php $pid = pcntl_rfork ( RFNOWAIT | RFTSIGZMB , SIGUSR1 ); ... if ( $pid > 0 ) { // This is the parent process. var_dump ( ... $pid ); } else { // This is the child process. var_dump ...
https://man.plustar.jp/php/function.pcntl-rfork.html - [similar]
ウォッチャーを設定する 8856
« EvChild::createStopped EvEmbed » PHP Manual EvChild ウォッチャーを設定する EvChild::set (PECL ... ォッチャーを設定する 説明 public EvChild::set ( int $pid , bool $trace ): void パラメータ pid EvChild::__co ... を作る 関連キーワード: EvChild , 設定 , construct , pid , createStopped , EvEmbed , public , int , パラメー ...
https://man.plustar.jp/php/evchild.set.html - [similar]
PREV 1 2 3 4 5 6 NEXT