0
0
PHPprogramming~5 mins

Compact and extract functions in PHP - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the compact() function do in PHP?
The compact() function creates an array from variables and their values. You give it variable names as strings, and it returns an associative array where keys are the variable names and values are the variable values.
Click to reveal answer
beginner
What is the purpose of the extract() function in PHP?
The extract() function imports variables into the current symbol table from an associative array. It creates variables named after the array keys and assigns them the corresponding values.
Click to reveal answer
intermediate
How do compact() and extract() relate to each other?
compact() turns variables into an array, while extract() turns an array back into variables. They are like opposites and can be used to pass variables around easily.
Click to reveal answer
intermediate
What happens if you use extract() with an array that has keys matching existing variables?
By default, extract() will overwrite existing variables with the same name. You can control this behavior with flags like EXTR_SKIP to avoid overwriting.
Click to reveal answer
beginner
Show a simple example of using compact() and extract() together.
Example:<br>
$name = "Alice";<br>$age = 30;<br>$data = compact('name', 'age');<br>// $data is ['name' => 'Alice', 'age' => 30]<br>extract($data);<br>// Now $name and $age variables exist again with original values
Click to reveal answer
What does compact('x', 'y') return if $x = 5 and $y = 10?
AVariables named 'x' and 'y' with values 5 and 10
BAn array [5, 10]
CAn array ['x' => 5, 'y' => 10]
DA string 'x y'
What does extract(['a' => 1, 'b' => 2]) do?
ADeletes variables <code>$a</code> and <code>$b</code>
BCreates variables <code>$a = 1</code> and <code>$b = 2</code>
CCreates an array with keys 'a' and 'b'
DReturns an array [1, 2]
If you want to avoid overwriting existing variables when using extract(), which flag should you use?
AEXTR_OVERWRITE
BEXTR_IF_EXISTS
CEXTR_PREFIX_ALL
DEXTR_SKIP
Which function would you use to turn variables into an associative array?
Acompact()
Barray_keys()
Carray_merge()
Dextract()
What will happen if you call extract() on an empty array?
ANothing happens, no variables are created
BIt throws an error
CIt creates variables with null values
DIt deletes all existing variables
Explain how compact() and extract() work and how they can be used together.
Think about turning variables into arrays and back.
You got /4 concepts.
    What precautions should you take when using extract() in your code?
    Consider variable conflicts and safety.
    You got /4 concepts.