$foo = 'hund';
function bar(){
echo $foo; // sollte funktionieren
$bla = 'katze';
return true;
}
funktioniert nicht
richtig wäre:
~~~php
$foo = 'hund';
function bar(){
global $foo;
echo $foo; // funktioniert
$bla = 'katze';
return true;
}