Question:What is the result of the following code snippet?
<?php
$array = array('a' => 'John',
'b' => 'Coggeshall',
'c' => array('d' => 'John',
'e' => 'Smith'));
function something($array) {
extract($array);
return $c['e'];
}
print something($array);
?>
A Smith
B A PHP Warning
C
D
E Array
+ AnswerA
+ Report