<?php 
    
function test ()
    {
        
$a 0;
        echo 
$a '<br>';
        
$a++;
    }
    
    function 
test2()
    {
        static 
$a 0;
        echo 
$a '<br>';
        
$a++;
    }
 
    
    
test( );
    
test( );    
    
test( );
    echo 
'<hr>';
    
    
test2( );
    
test2( );    
    
test2( );
?>