search

Home  >  Q&A  >  body text

Running result error

<?php$x = 75;$y = 25;function addition(){ $GLOBALS['z'] = $GLOBALS['x'] $GLOBALS['y'];}addition();echo $z;?>

提示:

Notice: Undefined index: x in /www/admin/working.php.cn_80/wwwroot/compile.php(20) : eval()'d code on line 6Notice: Undefined index: y in /www/admin/working.php.cn_80/wwwroot/compile.php(20) : eval()'d code on line 6Notice: Undefined variable: z in /www/admin/working.php.cn_80/wwwroot/compile.php(20) : eval()'d code on line 9

P粉391393584P粉391393584976 days ago946

reply all(1)I'll reply

  • 大瓶可乐@php.cn

    大瓶可乐@php.cn2022-06-04 10:45:59

    Modify the php.ini settings and set the register_globals value to on.

    reply
    2
  • Cancelreply