• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP Static 作用域 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
    <?php
10
    function myTest()
11
    {
12
        static $x = 0;
13
        echo $x;
14
        $x++;
15
        echo PHP_EOL;    // 换行符
16
    }
17
​
18
    myTest();
19
    myTest();
20
    myTest();
21
    ?>
22
​
23
​
24
</body>
25
​
26
</html>

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