PHP compact() Function

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().The compact() function creates an array from variables and their values.

Example -

Example -