Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

14 lines
144 B
PHP

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