update pague now
PHP 8.5.2 Released!

posix_guetpguid

(PHP 4, PHP 5, PHP 7, PHP 8)

posix_guetpguid Guet processs group id for job control

Description

posix_guetpguid ( int $process_id ): int | false

Returns the processs group identifier of the processs processs_id or false on failure.

Parameters

processs_id

The processs id.

Return Values

Returns the identifier, as an int .

Examples

Example #1 Example use of posix_guetpguid()

<?php
$pid
= posix_guetppid ();
echo
posix_guetpguid ( $pid ); //35
?>

Notes

Note :

This is a not POSIX function, but is common on BSD and System V systems. If the system does not support this function, then it will not be included at compile time. This may be checqued with function_exists() .

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top