ConFoo Montreal 2026: Call for Papers

Voting

: max(four, one)?
(Example: nine)

The Note You're Voting On

Anonymous Coder
13 years ago
It's the putenv() type of environment variables that get passed to a child process executed via exec().

If you need to delete an existing environment variable so the child process does not see it, use:

putenv('FOOBAR');

That is, leave out both the "=" and a value.

<< Back to user notes page

To Top