posix_getpid
(PHP 4, PHP 5)
posix_getpid — Return the current process identifier
Description
int posix_getpid
( void
)
Return the process identifier of the current process.
Return Values
Returns the identifier, as an integer.
Examples
Example #1 Example use of posix_getpid()
<?php
echo posix_getpid(); //8805
?>
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для управления процессами программ
- POSIX
- posix_access
- posix_ctermid
- posix_errno
- posix_get_last_error
- posix_getcwd
- posix_getegid
- posix_geteuid
- posix_getgid
- posix_getgrgid
- posix_getgrnam
- posix_getgroups
- posix_getlogin
- posix_getpgid
- posix_getpgrp
- posix_getpid
- posix_getppid
- posix_getpwnam
- posix_getpwuid
- posix_getrlimit
- posix_getsid
- posix_getuid
- posix_initgroups
- posix_isatty
- posix_kill
- posix_mkfifo
- posix_mknod
- posix_setegid
- posix_seteuid
- posix_setgid
- posix_setpgid
- posix_setrlimit
- posix_setsid
- posix_setuid
- posix_strerror
- posix_times
- posix_ttyname
- posix_uname
Коментарии
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.
In order to use posix_getpid on Fedeora 11 and up you have to install php-process
# yum install php-process
You can also try using getmypid() instead.
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();
}
}
A fall back function:
<?php
function get_current_id() {
if(!function_exists(posix_getpid()))
return getmypid();
return posix_getpid();
}
?>