App下载

demo_var_static 在线工具

demo_var_static 在线工具

<?php

function myTest()
{
static $x=0;
echo $x;
$x++;
}

myTest();
echo "<br />";
myTest();
echo "<br />";
myTest();
echo "<br />";
myTest();
echo "<br />";
myTest();
?>
运行结果