HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

pcntl_exec

Description

The pcntl_exec of PCNTL for PHP executes a specified program in the current process space.

Syntax

pcntl_exec(
    string $path,
    array $args = [],
    array $env_vars = []
): bool

Parameters

path

path must be the path to a binary executable or a script with a valid path pointing to an executable in the shebang ( #!/usr/local/bin/perl for example) as the first line. See your system's man execve(2) page for additional information.

args

An array of argument strings passed to the program.

env_vars

An array of strings which are passed as environment to the program. The array is in the format of name => value, the key being the name of the environmental variable and the value being the value of that variable.

Return

Returns false.