compactCreate array containing variables and their values
&reftitle.description;
arraycompactarraystringvar_namearraystringvar_names
Creates an array containing variables and their values.
For each of these, compact looks for a
variable with that name in the current
symbol table
and adds it to the output array such that the variable name becomes the key
and the contents of the variable become the value for that key.
In short, it does the opposite of extract.
Before PHP 7.3, any strings that are not set will silently be skipped.
&reftitle.parameters;
var_namevar_namescompact takes a variable number of parameters.
Each parameter can be either a string containing the name of the
variable, or an array of variable names. The array can contain other
arrays of variable names inside it; compact
handles it recursively.
&reftitle.returnvalues;
Returns the output array with all the variables added to it.
&reftitle.errors;
compact issues an E_WARNING level error if a given string
refers to an unset variable.
&reftitle.changelog;
&Version;&Description;8.0.0
If a given string references an unset variable, an E_WARNING level error is now issued.
7.3.0compact now issues an E_NOTICE level error if a given string
refers to an unset variable. Formerly, such strings have been silently skipped.
&reftitle.examples;
compact example
]]>
&example.outputs;
SIGGRAPH
[city] => San Francisco
[state] => CA
)
]]>
&reftitle.notes;
Gotcha
Because variable
variables may not be used with PHP's
Superglobal
arrays within functions, the Superglobal arrays may not be passed
into compact.
&reftitle.seealso;
extract