(PHP 4, PHP 5, PHP 7)
posix_getpid — 返回当前进程 id
Return the process identifier of the current process. 返回当前进程的 id
返回进程 id 号,是整型(integer)。
Example #1 posix_getpid() 的使用例子
<?phpecho posix_getpid(); //8805?>