1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
|
$globaleVariable = "Hello World!";
output(); // hier kommt dein Fehler!
outputRichtig(); // hier funktionierts!
function output() {
echo $globaleVariable;
}
function outputRichtig() {
GLOBAL $globaleVariable;
echo $globaleVariable;
} |