perhaps a combination of
ps -ef | grep php
and
pstree -a -l -h -p {ONE_OF_THE_PIDs}
would help.
I'm not running php, but I am running postgres. Here's a sample output for you.
steve@AntHill2:~$ ps -ef | grep post
postgres 1115 1 0 08:39 ? 00:00:01 /usr/lib/postgresql/12/bin/postgres -D /var/lib/postgresql/12/main -c config_file=/etc/postgresql/12/main/postgresql.conf
postgres 1153 1115 0 08:39 ? 00:00:00 postgres: 12/main: checkpointer
postgres 1154 1115 0 08:39 ? 00:00:00 postgres: 12/main: background writer
postgres 1155 1115 0 08:39 ? 00:00:00 postgres: 12/main: walwriter
postgres 1156 1115 0 08:39 ? 00:00:00 postgres: 12/main: autovacuum launcher
postgres 1157 1115 0 08:39 ? 00:00:00 postgres: 12/main: stats collector
postgres 1158 1115 0 08:39 ? 00:00:00 postgres: 12/main: logical replication launcher
steve 17723 17577 0 20:10 pts/0 00:00:00 grep --color=auto post
steve@AntHill2:~$ pstree -a -l -h -p 1115
postgres,1115 -D /var/lib/postgresql/12/main -c config_file=/etc/postgresql/12/main/postgresql.conf
├─postgres,1153
├─postgres,1154
├─postgres,1155
├─postgres,1156
├─postgres,1157
└─postgres,1158
If this does not help, try the arguments for pstree. If still no luck, then I recommend phpadmin or look in the php Stack Exchange forum.