码迷,mamicode.com
首页 > 其他好文 > 详细

递归函数你玩知道呢?

时间:2015-07-21 22:01:11      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

<?php


/* 
 * php使用递归函数
 * 你玩过吧?
 * 以下開始玩一玩
 */


//自己调自己就是回调       实现了一个垒加2垒减2的效果
class digui{
    public function index($number){
         if($number>0) {
             echo $number,"&nbsp;";
             $this->index($number-2);      //自己调自己就是回调
         }
    }
    public function unindex($number1){
         if($number1<=10){
             echo $number1,"&nbsp;";
             $this->unindex($number1+2);
         }
    }
    
}
$obj = new digui();
$obj ->index(10);
echo "<br />";
$obj ->index(9);


echo "<br />";
$obj ->unindex(1);


echo "<br />";
$obj ->unindex(2);

版权声明:本文博客原创文章,博客,未经同意,不得转载。

递归函数你玩知道呢?

标签:

原文地址:http://www.cnblogs.com/hrhguanli/p/4665716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!