mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
7 lines
77 B
PHP
7 lines
77 B
PHP
<?php
|
|
function counter()
|
|
{
|
|
static $counter = 0;
|
|
return ++$counter;
|
|
}
|