PHP Doku:: Liefert die aktuelle Prozesskennung - function.posix-getpid.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur ProzesskontrollePOSIXPOSIX Funktionenposix_getpid

Ein Service von Reinhard Neidl - Webprogrammierung.

POSIX Funktionen

<<posix_getpgrp

posix_getppid>>

posix_getpid

(PHP 4, PHP 5)

posix_getpidLiefert die aktuelle Prozesskennung

Beschreibung

int posix_getpid ( void )

Gibt die Prozesskennung des aktuellen Prozesses zurück.

Rückgabewerte

Gibt die Kennung als Ganzzahl zurück.

Beispiele

Beispiel #1 posix_getpid()-Beispiel

<?php
echo posix_getpid(); //8805
?>

Siehe auch

  • posix_kill() - Sendet einem Prozess ein Signal
  • POSIX GETPID(2)-Manpage


2 BenutzerBeiträge:
- Beiträge aktualisieren...
zapolski at gmail dot com
15.09.2010 4:13
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
28.02.2010 9:09
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.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)