xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP Static 作用域 实例 - 自学教程(runoops.com)</title>
</head>
<body>
function myTest()
{
static $x = 0;
echo $x;
$x++;
echo PHP_EOL; // 换行符
}
myTest();
myTest();
myTest();
</body>
</html>