Question: What is true regarding $a+$b where both of them are arrays?
A
B
C
D
Duplicated keys are NOT overwritten
B
$b is appended to $a
C
The + operator is overloaded
D
This produces a syntax error
Note: Not available
Function fn(&$var)
{
$var=$var-($var/10*5);
Return $var;
}
Echo fn(100);
A. 023
B. X23
Choose the correct options:
$var=10;
Function Fn()
{
$var=20;
Return $var;
}
Fn();
Echo $var;