compact

(PHP 4, PHP 5)

compact — Создать массив, содержащий названия переменных и их значения

Описание

array compact ( mixed $varname [, mixed $... ] )

compact() принимает переменное число параметров. Любой из параметров может быть либо строкой, содержащей название переменной либо массивом названий переменных. Массив может содержать вложенные массивы названий переменных; функция compact() обрабатывает их рекурсивно.

Для каждого из параметров, compact() смотрит, существует ли переменная с таким именем в текущей символьной таблице и добавляет в результирующий массив элемент, ключ которого содержит название переменной, а значение, соответствующее этому ключу, значение переменной. Коротко говоря, действия этой функции противоположны действиям функции extract(). Она возвращает результирующий массив со всеми переменными, добавленными туда.

Если переменной, с именем, соответствующем переданной строке не существует, такая строка будет просто проигнорирована.

Пример #1 Пример использования compact()

<?php
$city  
"San Francisco";
$state "CA";
$event "SIGGRAPH";

$location_vars = array("city""state");

$result compact("event""nothing_here"$location_vars);
?>

После этого значение $result будет:

Array
(
    [event] => SIGGRAPH
    [city] => San Francisco
    [state] => CA
)

См. также extract().

Коментарии

Автор:
Can also handy for debugging, to quickly show a bunch of variables and their values:

<?php
print_r
(compact(explode(' ''count acw cols coldepth')));
?>

gives

Array
(
    [count] => 70
    [acw] => 9
    [cols] => 7
    [coldepth] => 10
)
2007-05-24 09:10:04
http://php5.kiev.ua/manual/ru/function.compact.html
Автор:
The description says that compact is the opposite of extract() but it is important to understand that it does not completely reverse extract().  In particluar compact() does not unset() the argument variables given to it (and that extract() may have created).  If you want the individual variables to be unset after they are combined into an array then you have to do that yourself.
2011-01-19 17:16:22
http://php5.kiev.ua/manual/ru/function.compact.html
So compact('var1', 'var2') is the same as saying array('var1' => $var1, 'var2' => $var2) as long as $var1 and $var2 are set.
2016-01-26 15:45:39
http://php5.kiev.ua/manual/ru/function.compact.html
Consider these two examples. The first as used in the manual, and  the second a slight variation of it.

Example #1

<?php
$city 
"San Francisco";
$state "CA";
$event "SIGGRAPH";

$location_vars = array("city""state");

$result compact("event"$location_vars);
print_r($result);
?>

Example #1 above  will output:

Array
(
    [event] => SIGGRAPH
    [city] => San Francisco
    [state] => CA
)

Example #2

<?php
$city 
"San Francisco";
$state "CA";
$event "SIGGRAPH";

$location_vars = array("city""state");

$result compact("event""location_vars");
print_r($result);
?>

Example #2 above will output:

Array
(
    [event] => SIGGRAPH

    [location_vars] => Array
        (
            [0] => city
            [1] => state
        )

)

In the first example, the value of the variable $location_values (which is an array containing city, and state) is passed to compact().

In the second example, the name of the variable $location_vars  (i.e  without the '$' sign) is passed to compact() as a string. I hope this further clarifies the points made in the manual?
2020-01-13 15:20:43
http://php5.kiev.ua/manual/ru/function.compact.html
If you must utilise this knowing that a variable may be unset, then you need to use an alternative method.

So instead of the following:

<?php
$var1 
"lorem";
$var2 "ipsum";
$result compact('var1''var2''unsetvar');
?>

Consider the following:

<?php
$var1 
"lorem";
$var2 "ipsum";
$result = [];
foreach( [
'var1''var2''unsetvar'] as $attr ) {
    if ( isset( $
$attr ) ) {
       
$result$attr ] = $$attr;
    }
}
?>
2023-09-20 18:23:44
http://php5.kiev.ua/manual/ru/function.compact.html

    Поддержать сайт на родительском проекте КГБ