php function fun($n) { if($n == 5) return 1; $t = 2 * (fun($n + 1) + 1); return $t; } echo fun(1); 查看完整描述