✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який буде результат? <?php$array = array('a' => 'One', 'b' => 'Two', 'c' =>array('d' => 'Three', 'e' => 'Four'));function print_element($array) {extract($array); return $c['e'];}print print_element ($array);?>