PHP's documentation for the proc_open function states that when spawning a child process, you can pass null as the value for the 'env' parameter to forward the parent script's environment down to the child process. Has anyone here done this, and if so, would you mind elaborating on this?
If a user has session data in the parent process, is that passed to the child? if the parent process has included various libraries, classes, etc..., are those also passed down to the child?
Thank you.