search

Home  >  Q&A  >  body text

输出时和注释的结果部一直

<?php

 $x=10;

 $y=20;

 function test(){

     global $x,$y;      //使用global关键字

 

     $y=$x+$y;

 }

 test();

 echo $y;//输出30

     global $x,$y;      //使用global关键字

 

     $y=$x+$y;

 }

 test();

 echo $y;//输出30

这段代码怎么输入还是  20 呢?

Spring21Spring212868 days ago1154

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:03:02

    When outputting, the result of the annotation is always the same - PHP Chinese website Q&A - When outputting, the result of the annotation is always the same - PHP Chinese website Q&A

    Take a look around and learn.

    reply
    0
  • PHP中文网

    PHP中文网2017-02-08 09:23:13

    考虑到php版本的兼容性问题,不建议这么写,推荐的写法如下:

    <?php
    $GLOBALS['x']=10;
    $GLOBALS['y']=20;
    function test(){
        $GLOBALS['y']=$GLOBALS['x']+$GLOBALS['y'];
    }
    test();
    echo $GLOBALS['y'];//输出30


    reply
    0
  • Cancelreply