LPMJ Example 3-17 (Click on the icon to view the source for copy and pasting)
<?php
function test()
{
    static $count = 0;
    echo $count;
    $count++;
}
?>