Files
lpmj6/3/example3-17.php
T
2020-09-02 14:21:10 +01:00

14 lines
144 B
PHP

<?php
echo test();
echo "<br><br>";
echo test();
function test()
{
static $count = 0;
echo $count;
$count++;
}
?>