<?php header("Content-Type:text/html;charset=utf-8"); function A(){ static $i = 0; ++$i; echo $i, "<br>"; if($i<5){ A(); } } A();//输出:12345 ?>