• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP global 关键字 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
    <?php
10
    $x = 5;
11
    $y = 10;
12
​
13
    function myTest()
14
    {
15
        $GLOBALS['y'] = $GLOBALS['x'] + $GLOBALS['y'];
16
    }
17
​
18
    myTest();
19
    echo $y;
20
    ?>
21
​
22
​
23
</body>
24
​
25
</html>

© 2023 自学教程   runoops.com All Rights Reserved. 备案号:闽ICP备19010956号-1