✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким буде результат виконання наступного коду?
$a = 2;
function f()
{
$res = 5;
return $res;
}
$a = f();
var_dump($a);