posix_getppid> <posix_getpgrp
Last updated: Fri, 24 Feb 2012

posix_getpid

(PHP 4, PHP 5)

posix_getpidReturn the current process identifier

Descrição

int posix_getpid ( void )

Return the process identifier of the current process.

Valor Retornado

Returns the identifier, as an integer.

Exemplos

Exemplo #1 Example use of posix_getpid()

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

Veja Também

  • posix_kill() - Send a signal to a process
  • POSIX man page GETPID(2)



posix_getppid> <posix_getpgrp
Last updated: Fri, 24 Feb 2012
 
User Contributed Notes
posix_getpid
Yzmir Ramirez
14-Jul-2011 12:42
You can also try using getmypid() instead.
zapolski at gmail dot com
14-Sep-2010 04:13
In order to use posix_getpid on Fedeora 11 and up you have to install php-process

# yum install php-process
andy at haveland dot com
27-Feb-2010 09:09
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.

posix_getppid> <posix_getpgrp
Last updated: Fri, 24 Feb 2012