suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Der Aufruf einer globalen Variablen kann den Wert von X nicht ändern

<?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:

?> ;


蓝翔特级**蓝翔特级**2354 Tage vor1202

Antworte allen(2)Ich werde antworten

  • 尹天仇

    尹天仇2018-11-28 14:44:59

    这是他编辑器出的问题,你在外面自己的编辑器里试一下,能够正常显示

    Antwort
    0
  • ll

    ll2018-08-13 17:27:34

    .... 你仔细看看  $y 是局部变量 你在function外面echo $y肯定出错啊 这个变量没有定义

    Antwort
    0
  • StornierenAntwort