Possible Duplicate:
Declaring a global variable inside a function
Is it possible to declare variable with global scope from inside a function?
NOTE: I don't want to receive the value of a previously declared variable outside the function. But to have the values of the variables declared inside the function working outside the function scope.
I a way that if I have these variables declared inside a function:
function variables($n){
$a=1+$n;
$b="This is number +$n";
}
I could echo them outside the function:
variables(1);
echo $a;
echo '\n';
echo $b;
2
This is number 1
I know I could achieve it returning an array from the function but... I'd like to be sure I could otherwise.
I saw nothing here: http://php.net/manual/en/language.variables.scope.php
Thanks.