(PHP 4, PHP 5, PHP 7)
posix_getpid — 返回当前进程 id
Return the process identifier of the current process. 返回当前进程的 id
返回进程 id 号,是整型(integer)。
示例 #1 posix_getpid() 的使用例子
[#1] ▲0▼ victor@gmail.com [0%] (2019-08-06 10:22:09)
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();
}
}
[#2] ▲4▼ yzmir ramirez [75%] (2011-07-14 15:42:15)
You can also try using getmypid() instead.
[#3] ▲5▼ zapolski@gmail.com [86%] (2010-09-14 19:13:24)
In order to use posix_getpid on Fedeora 11 and up you have to install php-process # yum install php-process
[#4] ▲1▼ andy@haveland.com [60%] (2010-02-28 00:09:21)
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.