compactPHP ManualPrevNextcompactcompact --
Create array containing variables and their values
Descriptionarray compact(string varname | array
varnames,
[...]
);
compact() 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.
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().
It returns the output array with all the variables added to it.
Example 1. compact() example 1
2 $city = "San Francisco";
3 $state = "CA";
4 $event = "SIGGRAPH";
5
6 $location_vars = array ("city", "state");
7
8 $result = compact ("event", $location_vars);
9
After this, $result will be array ("event" => "SIGGRAPH",
"city" => "San Francisco", "state" => "CA").
See also extract().
Note:
This function was added in PHP 4.0.
PrevHomeNextasortUpcount