posix_getpid
(PHP 4, PHP 5, PHP 7, PHP 8)
posix_getpid — 返回目前程序 id
說明
posix_getpid(): int
Return the process identifier of the current process. 返回目前程序的 id
參數
此函式沒有參數。
返回值
返回程序 id 號,是整型(int)。
範例
示例 #1 posix_getpid() 的使用例子
<?php
echo posix_getpid(); //8805
?>