Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким буде результат виконання наступного коду?
$a = 2;function f(){ global $a; $a++;}f();var_dump($a);
$a = 2;
function f()
{
global $a;
$a++;
}
f();
var_dump($a);
4
3
1
2
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!