<?php function desc($n) { $n++; echo $n; //输出数字 if($n<10) { desc($n); //函数里面调用此函数 } echo $n; } desc(1);
就是这样