posix_getpid

(PHP 4, PHP 5, PHP 7)

posix_getpidВозвращает идентификатор текущего процесса

Описание

int posix_getpid ( void )

Возвращает идентификатор текущего процесса.

Возвращаемые значения

Возвращает идентификатор как integer.

Примеры

Пример #1 Пример использования posix_getpid()

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

Смотрите также

  • posix_kill() - Отправляет сигнал соответствующему процессу
  • POSIX руководство GETPID(2)

Коментарии

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.
2010-02-28 02:09:21
http://php5.kiev.ua/manual/ru/function.posix-getpid.html
In order to use posix_getpid on Fedeora 11 and up you have to install php-process

# yum install php-process
2010-09-14 22:13:24
http://php5.kiev.ua/manual/ru/function.posix-getpid.html
Автор:
You can also try using getmypid() instead.
2011-07-14 18:42:15
http://php5.kiev.ua/manual/ru/function.posix-getpid.html
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();
    }
}
2019-08-06 13:22:09
http://php5.kiev.ua/manual/ru/function.posix-getpid.html
A fall back function:
<?php
   
function get_current_id() {
        if(!
function_exists(posix_getpid()))
            return 
getmypid();
       
        return 
posix_getpid();
    }
?>
2022-05-06 20:58:12
http://php5.kiev.ua/manual/ru/function.posix-getpid.html

    Поддержать сайт на родительском проекте КГБ