compact in PHP

Syntax of compact

array compact(mixed variable1[, … mixed variableN])

Creates an array by retrieving the values of the variables named in the parameters. If any of the parameters are arrays, the values of variables named in the arrays are also retrieved. The array returned is an associative array, with the keys being the arguments provided to the function and the values being the values of the named variables. This function is the opposite of extract().

Example of compact

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

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

$result = compact("event", $location_vars);
print_r($result);
?>
Array
(
    [event] => SIGGRAPH
    [city] => San Francisco
    [state] => CA
)

Leave a Comment