✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який буде результат виконання наступного коду в PHP?
$arr = array(5 => 1, 12 => 2);
$arr[] = 56;
$arr["x"] = 42;
unset($arr);
echo var_dump($arr);