PHP MySQL implements infinite class classification | tree-type Display classification Relationship _php tutorial

Source: Internet
Author: User
Tags php mysql
Infinite class classification, mainly by storing the ID of the parent classification and the classification path to achieve. Because the structure of the data is simple, so the relationship between the classification of the tree display, I can only think of the recursive way to achieve, the following is the structure of the classification data table and a tree-like display function, what is wrong with the place I hope you can point out.

Table structure: The ID field is the category identification, the Name field is the category name, the father_id field is the Id,path field of the parent category that belongs to the taxonomy path (the collection that stores the ancestor of that category), Isdir determines whether it is a directory (1 is yes, 0 is no).

Display function:

$count as classification level
Sort_list ($str, $fatherid, $count)
{
$rs = $this->sql->re_datas ("select * from sort where father_id = Fatherid");
$num = $this->sql->sql_numrows ();
$i = 0;
$n = 1;
while (Isset ($rs [$i])
{
$name = "";
for ($n = 1; $n < $count; $n)
{
$name. = "│";
}
if ($i 1== $num)
{
$name. = "└─". $rs [$i][name];
}
Else
{
$name. = "├─". $rs [$i][name];
}
if ($rs [$i][isdir])
{
$str. = " ". $name."";
}
Else
{
$str. = $name ";
}
$temp = $count 1;
$str = $this->sort_list ($str, $rs [$i][id], $temp);
$i;
}
return $str;
}


Where the $this->sql object is the SQL Action class object, the Re_datas () function returns the array that is found, and the Sql_numrows () function returns the number of queries to

Calling method: $sort _list = sort_list ($sort _list,0,1);


http://www.bkjia.com/PHPjc/445097.html www.bkjia.com true http://www.bkjia.com/PHPjc/445097.html techarticle Infinite class classification, mainly by storing the ID of the parent classification and the classification path to achieve. Because the structure of the data is simple, so the relationship of the classification by the tree-like display, I can only think of the hand ...

  • 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.