摘要: function test($n){echo $n."";if($n>0){ test($n-1); }else { echo "____________"; } echo $n."";}test(10); 阅读全文
posted @ 2015-09-11 18:00 上善若水blog 阅读(106) 评论(0) 推荐(0)