From http://www.w3schools.com (Copyright Refsnes Data)
The extract() function imports variables into the local symbol table from an array.
This function uses array keys as variable names and values as variable values. For each element it will create a variable in the current symbol table.
This function returns the number of variables extracted on success.
extract(array,extract_rules,prefix) |
Parameter | Description |
---|---|
array | Required. Specifies the array to use |
extract_rules | Optional. The extract() function checks for invalid
variable names and collisions with existing variable names. This parameter
specifies how invalid and colliding names are treated. Possible values:
|
prefix | Optional. If EXTR_PREFIX_SAME, EXTR_PREFIX_ALL,
EXTR_PREFIX_INVALID or EXTR_PREFIX_IF_EXISTS are used in the extract_rules
parameter, a specified prefix is required.
This parameter specifies the prefix. The prefix is automatically separated from the array key by an underscore character. |
<?php $a = 'Original'; $my_array = array("a" => "Cat","b" => "Dog", "c" => "Horse"); extract($my_array); echo "\$a = $a; \$b = $b; \$c = $c"; ?> |
The output of the code above will be:
$a = Cat; $b = Dog; $c = Horse |
With all parameters in use:
<?php $a = 'Original'; $my_array = array("a" => "Cat","b" => "Dog", "c" => "Horse"); extract($my_array, EXTR_PREFIX_SAME, 'dup'); echo "\$a = $a; \$b = $b; \$c = $c; \$dup_a = $dup_a;"; ?> |
The output of the code above will be:
$a = Original; $b = Dog; $c = Horse; $dup_a = Cat; |
From http://www.w3schools.com (Copyright Refsnes Data)