Heim > Fragen und Antworten > Hauptteil
<?php
header("Content-type:text/html;charset=utf-8");
$x=5; // Globale Variable
function myTest()
{
$y=10; // Lokale Variable
global $x;
echo "<p>Variablen in Testfunktion:<p>";
echo "Variable x ist: $x";
echo "<br>";
echo "Variable y ist: $y";
}
myTest();
echo "<p>Testfunktion externe Variablen:<p> ;";
echo "Variable x ist: $x";
echo "<br>";
echo "Variable y ist: $y"; //Ausgabefehlerhinweis: Undefinierte Variable:
?> ;