You can also try using getmypid() instead.
posix_getpid
(PHP 4, PHP 5)
posix_getpid — Çalışan sürecin süreç kimliğini döndürür
Açıklama
int posix_getpid
( void
)
Çalışan sürecin kendi süreç kimliğini döndürür.
Dönen Değerler
Süreç kimliği bir tamsayı olarak döner.
Örnekler
Örnek 1 - posix_getpid() örneği
<?php
echo posix_getpid(); //8805
?>
zapolski at gmail dot com ¶
2 years ago
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 ¶
3 years ago
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.
