answering to http://php.net/manual/en/function.posix-getppid.php#120088
if you're using proc_open and you want to get the pid of the calling php-process, use proc open with usage "exec php $scriptname". In that case, you can get the real parent-id, because php doesn't start a new shell.
PHP.mk документација
posix_getppid
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
Патека
function.posix-getppid.php
Локална патека за оваа страница.
Извор
php.net/manual/en
Оригиналниот HTML се реупотребува и локално се стилизира.
Режим
Прокси + превод во позадина
Кодовите, табелите и белешките остануваат читливи во истиот тек.
Референца
function.posix-getppid.php
posix_getppid
Референца за `function.posix-getppid.php` со подобрена типографија и навигација.
posix_getppid
(PHP 4, PHP 5, PHP 7, PHP 8)
posix_getppid — Врати го идентификаторот на родителскиот процес
= NULL
posix_getppid(): int
Врати го идентификаторот на процесот на родителскиот процес на тековниот процес.
Параметри
Оваа функција нема параметри.
Вратени вредности
Враќа идентификатор, како int.
Примери
Пример #1 Пример за употреба на posix_getppid()
<?php
echo posix_getppid(); //8259
?>Белешки од корисници 4 белешки
mail at spacerat dot net ¶
пред 8 години
[email protected] ¶
пред 9 години
WARNING, when using proc_open, your child will NOT get the parent php process's PID by using posix_getppid() , it will actually get the pid of a shell ( /bin/sh ? ) started by php, which in turn starts the child. i don't currently have a good workaround for this, but i'm working around it by having the parent write it's pid to a file and having the chidren read the file
Avital Yachin ¶
пред 8 години
posix_getppid will not work on Windows.
Here's an alternative:
<?php
if(strncasecmp(PHP_OS, "win", 3) == 0) {
$pid = getmypid(); // child process ID
$parent_pid = shell_exec("wmic process where (processid=$pid) get parentprocessid");
$parent_pid = explode("\n", $parent_pid);
$parent_pid = intval($parent_pid[1]);
echo "Child: $pid Parent: $parent_pid\n";
}
?>
[email protected] ¶
пред 8 години
when using proc_open, the child's ppid is NOT your php script, but rather a shell started by proc_open's pid. to get your pid, your proc_open child needs to get the parent's parent's (aka grandparent's) pid. here's a way to do that in PHP on linux:
function posix_getpppid(): int {
return ( int ) (explode ( " ", file_get_contents ( "/proc/" . posix_getppid () . "/stat" ) ) [3]);
}
(thanks to TML @ irc.freenode.net/##PHP for the technique)
(i said most of this in a previous comment, but i didn't have a good solution for it. now i have. if someone with the privileges read this, can you delete this notice and my previous comment please?)