PHP 8.6.0 Beta 1 is available for testing

posix_getpid

(PHP 4, PHP 5, PHP 7, PHP 8)

posix_getpidDevolver el identificador del proceso actual

Descripción

function posix_getpid(): int

Devolver el identificador de proceso del proceso actual.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve el identificador, como valor de tipo int .

Ejemplos

Ejemplo #1 Ejemplo de uso de posix_getpid()

<?php
echo posix_getpid(); //8805
?>

Véase también

  • posix_kill() - Enviar una señal a un proceso
  • Página GETPID(2) del man de POSIX

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes 5 notes

up
5
zapolski at gmail dot com
15 years ago
In order to use posix_getpid on Fedeora 11 and up you have to install php-process
# yum install php-process
up
4
Yzmir Ramirez
15 years ago
You can also try using getmypid() instead.
up
1
andy at haveland dot com
16 years ago
Since upgrading fedora 10 to 12, I discovered that posix_getpid() disappeared and not compiled in by default, as it specifies here.
It turns out that it had been moved into package php-process.
Just do "yum install php-process", and all should be sweet again.
Hope this saves someone half an hour of research.
up
1
victor at gmail dot com
7 years ago
You can use this code in windows or if you system has no posix support:
<?php
if (!function_exists('posix_getpid')) {
 function posix_getpid() {
 return getmypid();
 }
}
up
0
ia dot beladel at protonmail dot com
4 years ago
A fall back function:
<?php
 function get_current_id() {
 if(!function_exists(posix_getpid()))
 return getmypid();
 
 return posix_getpid();
 }
?>
+add a note

AltStyle によって変換されたページ (->オリジナル) /