PHP recursive usage and recursive directory instance _php tutorial

Source: Internet
Author: User
Recursive algorithm in PHP is not much of our data traversal method, let me introduce you to the use of recursion to do something.

See a simple recursive instance

Example 1

The code is as follows Copy Code

function Demo ($a) {

static $sum = 1;

if ($a > 1) {

$sum *= $a;

Demo (--$a);

}else{

$a = $sum;

}

return $sum;

}

Echo Demo (10);

Example 2

Traverse Directory

The code is as follows Copy Code

Class listdir{
var $depth;
var $dirname;
var $list;
var $tostring;

function Listdir ($dir) {
$this->dirname= $dir;
$this->depth=0;
$this->tostring= "";
}

Save the result in a multidimensional array
function getlist ($dir = "") {
if ($dir = = "") $dir = $this->dirname;
$d = @dir ($dir);
while (false!== ($item = $d->read ()))
{
if ($item! = "." && $item! = "...")
{
$path = $dir. " /". $item;
if (Is_dir ($path)) {
$this->depth+=1;
$this->getlist ($path);
}else{
$this->list[$this->depth][]= $item;
}
}
}
$this->list[$this->depth][' directory ']= $dir;
$this->depth-=1;
$d->close ();
return $this->list;
}

Character channeling results

function ToString ($dir = "") {
if ($dir = = "") $dir = $this->dirname;
$d = @dir ($dir);
$this->tostring.= "

      n ";
      $this->tostring.= "Directory:" $dir. " n ";
      while (false!== ($item = $d->read ()))
      {
      if ($item! = "." && $item! = "...")
      {
      $path = $dir. " /". $item;
      if (Is_dir ($path)) {
      $this->depth+=1;
      $this->tostring ($path);
      }else{
      $this->tostring.= "
    • ". $item."
    • n ";
      }
      }
      }
      $this->depth-=1;
      $d->close ();
      $this->tostring.= "
n ";
return $this->tostring;
}
}
$wapdir = "jquery";
$d =new Listdir ($wapdir);
echo $d->tostring ();
?>

Output Result:


      Directory:jquery
    • Jquery-1.3.2.js

    • Jquery-1.3.2.min.js

    • Jquery-1.3.2-vsdoc2.js

    • Test.html

    • Common.js


      • directory:jquery/d
      • Common.js

      • Jquery-1.3.2.js


http://www.bkjia.com/PHPjc/632807.html www.bkjia.com true http://www.bkjia.com/PHPjc/632807.html techarticle recursive algorithm in PHP is not much of our data traversal method, let me introduce you to the use of recursion to do something. See a simple recursive instance ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.