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
<?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
