Hi good people.
I need some help with this small piece of code below:
$mode = “+”;
$processNumbers = create_function( ‘$a, $b’, “return \$a $mode \$b;” );
echo $processNumbers( 2, 3 );
The outcome of this code displays '5'.
But the thing i don't understand is, why there are backslashes before the variables:
\$a and \$b ??????
why not just $a and $b ?????
Paul.