• 实例首页
  • 自学教程
  • 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
        global $x, $y;
16
        $y = $x + $y;
17
    }
18
​
19
    myTest();
20
    echo $y; // 输出 15
21
    ?>
22
​
23
​
24
​
25
</body>
26
​
27
</html>

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