static $s_id = 0;

<?php
function graph_bar( ) {
    static $s_id = 0;

    $s_id++;
    echo "$s_id <br>";
}

graph_bar();
graph_bar();
graph_bar();
graph_bar();
graph_bar();
graph_bar();
1 
2 
3 
4 
5 
6 

 

posted @ 2017-11-28 13:15  sky20080101  阅读(42)  评论(0)    收藏  举报