diff --git a/reference/exec/constants.xml b/reference/exec/constants.xml index f710ef1840..fac6054cfb 100644 --- a/reference/exec/constants.xml +++ b/reference/exec/constants.xml @@ -3,7 +3,50 @@ &reftitle.constants; - &no.constants; + &extension.constants.core; + flags for escapeshellcmd: + + + + ESCAPE_CMD_PAIR + (integer) + + + + When ESCAPE_CMD_PAIR (default) is specified, + the quotation is escaped only if it is not paired. + (only valid for non-Win32 environment) + + + + + + ESCAPE_CMD_END + (integer) + + + + When ESCAPE_CMD_END is specified, + the quotation is escaped except for the beginning/ending of string. + (only valid for non-Win32 environment) + + + + + + ESCAPE_CMD_ALL + (integer) + + + + When ESCAPE_CMD_ALL is specified, + the quotation is always escaped. + (only valid for non-Win32 environment) + + + + +