<?php
$counter = function() {
    static $count = 0;
    $count++;
    return $count;
};

echo $counter(); // خروجی: 1
echo $counter(); // خروجی: 2