Home Backend Development PHP Tutorial How to use the tree class in php

How to use the tree class in php

Mar 19, 2018 pm 03:07 PM
php tree Instructions

本文主要和大家分享php中tree类的使用方法,希望能帮助到大家。

<?php
include &#39;tree.class.php&#39;;
//模拟数据库
$data=array(
    array(&#39;id&#39;=>1,&#39;pid&#39;=>0,&#39;name&#39;=>&#39;一级栏目一&#39;),
    array(&#39;id&#39;=>2,&#39;pid&#39;=>0,&#39;name&#39;=>&#39;一级栏目二&#39;),
    array(&#39;id&#39;=>3,&#39;pid&#39;=>1,&#39;name&#39;=>&#39;二级栏目一&#39;),
    array(&#39;id&#39;=>4,&#39;pid&#39;=>3,&#39;name&#39;=>&#39;三级栏目一&#39;),
    array(&#39;id&#39;=>5,&#39;pid&#39;=>4,&#39;name&#39;=>&#39;四级栏目一&#39;),
);
//转换数据
$tree_data=array();
foreach ($data as $key=>$value){
    $tree_data[$value[&#39;id&#39;]]=array(
        &#39;id&#39;=>$value[&#39;id&#39;],
        &#39;parentid&#39;=>$value[&#39;pid&#39;],
        &#39;name&#39;=>$value[&#39;name&#39;]
    );
}
/**
 * 输出树形结构
 */
$str="<tr>
    <td><input type=&#39;checkbox&#39; name=&#39;list[\$id]&#39; value=&#39;\$id&#39;></td>
    <td>\$id</td>
    <td>\$spacer\$name</td>
    <td><a href=&#39;add.php?id=\$id&#39;>添加</a></td>
    <td><a href=&#39;del.php?id=\$id&#39;>删除</a></td>
    <td><a href=&#39;update.php?id=&#39;\$id&#39;>修改</a></td>
    </tr>";
$tree=new Tree();
$tree->init($tree_data);
echo "<table>";
echo $tree->get_tree(0, $str);
echo "</table>";
echo "<br/>";
echo "<br/>";
echo "<br/>";
echo "<br/>";
/**
 * 输出下拉列表
 */
$str="<option value=\$id \$selected>\$spacer\$name</option>";
$tree=new Tree();
$tree->init($tree_data);
echo "<select>";
echo $tree->get_tree(0, $str,2);
echo "</select>";
Copy after login

tree.class.php

<?php
/**
* 通用的树型类,可以生成任何树型结构
*/
class tree {
	/**
	* 生成树型结构所需要的2维数组
	* @var array
	*/
	public $arr = array();

	/**
	* 生成树型结构所需修饰符号,可以换成图片
	* @var array
	*/
	public $icon = array(&#39;│&#39;,&#39;├&#39;,&#39;└&#39;);
	public $nbsp = " ";

	/**
	* @access private
	*/
	public $ret = &#39;&#39;;

	/**
	* 构造函数,初始化类
	* @param array 2维数组,例如:
	* array(
	*      1 => array(&#39;id&#39;=>&#39;1&#39;,&#39;parentid&#39;=>0,&#39;name&#39;=>&#39;一级栏目一&#39;),
	*      2 => array(&#39;id&#39;=>&#39;2&#39;,&#39;parentid&#39;=>0,&#39;name&#39;=>&#39;一级栏目二&#39;),
	*      3 => array(&#39;id&#39;=>&#39;3&#39;,&#39;parentid&#39;=>1,&#39;name&#39;=>&#39;二级栏目一&#39;),
	*      4 => array(&#39;id&#39;=>&#39;4&#39;,&#39;parentid&#39;=>1,&#39;name&#39;=>&#39;二级栏目二&#39;),
	*      5 => array(&#39;id&#39;=>&#39;5&#39;,&#39;parentid&#39;=>2,&#39;name&#39;=>&#39;二级栏目三&#39;),
	*      6 => array(&#39;id&#39;=>&#39;6&#39;,&#39;parentid&#39;=>3,&#39;name&#39;=>&#39;三级栏目一&#39;),
	*      7 => array(&#39;id&#39;=>&#39;7&#39;,&#39;parentid&#39;=>3,&#39;name&#39;=>&#39;三级栏目二&#39;)
	*      )
	*/
	public function init($arr=array()){
       $this->arr = $arr;
	   $this->ret = &#39;&#39;;
	   return is_array($arr);
	}

    /**
	* 得到父级数组
	* @param int
	* @return array
	*/
	public function get_parent($myid){
		$newarr = array();
		if(!isset($this->arr[$myid])) return false;
		$pid = $this->arr[$myid][&#39;parentid&#39;];
		$pid = $this->arr[$pid][&#39;parentid&#39;];
		if(is_array($this->arr)){
			foreach($this->arr as $id => $a){
				if($a[&#39;parentid&#39;] == $pid) $newarr[$id] = $a;
			}
		}
		return $newarr;
	}

    /**
	* 得到子级数组
	* @param int
	* @return array
	*/
	public function get_child($myid){
		$a = $newarr = array();
		if(is_array($this->arr)){
			foreach($this->arr as $id => $a){
				if($a[&#39;parentid&#39;] == $myid) $newarr[$id] = $a;
			}
		}
		return $newarr ? $newarr : false;
	}

    /**
	* 得到当前位置数组
	* @param int
	* @return array
	*/
	public function get_pos($myid,&$newarr){
		$a = array();
		if(!isset($this->arr[$myid])) return false;
        $newarr[] = $this->arr[$myid];
		$pid = $this->arr[$myid][&#39;parentid&#39;];
		if(isset($this->arr[$pid])){
		    $this->get_pos($pid,$newarr);
		}
		if(is_array($newarr)){
			krsort($newarr);
			foreach($newarr as $v){
				$a[$v[&#39;id&#39;]] = $v;
			}
		}
		return $a;
	}

    /**
	* 得到树型结构
	* @param int ID,表示获得这个ID下的所有子级
	* @param string 生成树型结构的基本代码,例如:"<option value=\$id \$selected>\$spacer\$name</option>"
	* @param int 被选中的ID,比如在做树型下拉框的时候需要用到
	* @return string
	*/
	public function get_tree($myid, $str, $sid = 0, $adds = &#39;&#39;, $str_group = &#39;&#39;){
		$number=1;
		$child = $this->get_child($myid);
		if(is_array($child)){
		    $total = count($child);
			foreach($child as $id=>$value){
				$j=$k=&#39;&#39;;
				if($number==$total){
					$j .= $this->icon[2];
				}else{
					$j .= $this->icon[1];
					$k = $adds ? $this->icon[0] : &#39;&#39;;
				}
				$spacer = $adds ? $adds.$j : &#39;&#39;;
				$selected = $id==$sid ? &#39;selected&#39; : &#39;&#39;;
				@extract($value);
				$parentid == 0 && $str_group ? eval("\$nstr = \"$str_group\";") : eval("\$nstr = \"$str\";");
				$this->ret .= $nstr;
				$nbsp = $this->nbsp;
				$this->get_tree($id, $str, $sid, $adds.$k.$nbsp,$str_group);
				$number++;
			}
		}
		return $this->ret;
	}
    /**
	* 同上一方法类似,但允许多选
	*/
	public function get_tree_multi($myid, $str, $sid = 0, $adds = &#39;&#39;){
		$number=1;
		$child = $this->get_child($myid);
		if(is_array($child)){
		    $total = count($child);
			foreach($child as $id=>$a){
				$j=$k=&#39;&#39;;
				if($number==$total){
					$j .= $this->icon[2];
				}else{
					$j .= $this->icon[1];
					$k = $adds ? $this->icon[0] : &#39;&#39;;
				}
				$spacer = $adds ? $adds.$j : &#39;&#39;;
				
				$selected = $this->have($sid,$id) ? &#39;selected&#39; : &#39;&#39;;
				@extract($a);
				eval("\$nstr = \"$str\";");
				$this->ret .= $nstr;
				$this->get_tree_multi($id, $str, $sid, $adds.$k.&#39; &#39;);
				$number++;
			}
		}
		return $this->ret;
	}
	 /**
	* @param integer $myid 要查询的ID
	* @param string $str   第一种HTML代码方式
	* @param string $str2  第二种HTML代码方式
	* @param integer $sid  默认选中
	* @param integer $adds 前缀
	*/
	public function get_tree_category($myid, $str, $str2, $sid = 0, $adds = &#39;&#39;){
		$number=1;
		$child = $this->get_child($myid);
		if(is_array($child)){
		    $total = count($child);
			foreach($child as $id=>$a){
				$j=$k=&#39;&#39;;
				if($number==$total){
					$j .= $this->icon[2];
				}else{
					$j .= $this->icon[1];
					$k = $adds ? $this->icon[0] : &#39;&#39;;
				}
				$spacer = $adds ? $adds.$j : &#39;&#39;;
				
				$selected = $this->have($sid,$id) ? &#39;selected&#39; : &#39;&#39;;
				@extract($a);
				if (empty($html_disabled)) {
					eval("\$nstr = \"$str\";");
				} else {
					eval("\$nstr = \"$str2\";");
				}
				$this->ret .= $nstr;
				$this->get_tree_category($id, $str, $str2, $sid, $adds.$k.&#39; &#39;);
				$number++;
			}
		}
		return $this->ret;
	}
	
	/**
	 * 同上一类方法,jquery treeview 风格,可伸缩样式(需要treeview插件支持)
	 * @param $myid 表示获得这个ID下的所有子级
	 * @param $effected_id 需要生成treeview目录数的id
	 * @param $str 末级样式
	 * @param $str2 目录级别样式
	 * @param $showlevel 直接显示层级数,其余为异步显示,0为全部限制
	 * @param $style 目录样式 默认 filetree 可增加其他样式如&#39;filetree treeview-famfamfam&#39;
	 * @param $currentlevel 计算当前层级,递归使用 适用改函数时不需要用该参数
	 * @param $recursion 递归使用 外部调用时为FALSE
	 */
    function get_treeview($myid,$effected_id=&#39;example&#39;,$str="<span class=&#39;file&#39;>\$name</span>", $str2="<span class=&#39;folder&#39;>\$name</span>" ,$showlevel = 0 ,$style=&#39;filetree &#39; , $currentlevel = 1,$recursion=FALSE) {
        $child = $this->get_child($myid);
        if(!defined(&#39;EFFECTED_INIT&#39;)){
           $effected = &#39; id="&#39;.$effected_id.&#39;"&#39;;
           define(&#39;EFFECTED_INIT&#39;, 1);
        } else {
           $effected = &#39;&#39;;
        }
		$placeholder = 	&#39;<ul><li><span class="placeholder"></span></li></ul>&#39;;
        if(!$recursion) $this->str .=&#39;<ul&#39;.$effected.&#39;  class="&#39;.$style.&#39;">&#39;;
        foreach($child as $id=>$a) {

        	@extract($a);
			if($showlevel > 0 && $showlevel == $currentlevel && $this->get_child($id)) $folder = &#39;hasChildren&#39;; //如设置显示层级模式@2011.07.01
        	$floder_status = isset($folder) ? &#39; class="&#39;.$folder.&#39;"&#39; : &#39;&#39;;		
            $this->str .= $recursion ? &#39;<ul><li&#39;.$floder_status.&#39; id=\&#39;&#39;.$id.&#39;\&#39;>&#39; : &#39;<li&#39;.$floder_status.&#39; id=\&#39;&#39;.$id.&#39;\&#39;>&#39;;
            $recursion = FALSE;
            if($this->get_child($id)){
            	eval("\$nstr = \"$str2\";");
            	$this->str .= $nstr;
                if($showlevel == 0 || ($showlevel > 0 && $showlevel > $currentlevel)) {
					$this->get_treeview($id, $effected_id, $str, $str2, $showlevel, $style, $currentlevel+1, TRUE);
				} elseif($showlevel > 0 && $showlevel == $currentlevel) {
					$this->str .= $placeholder;
				}
            } else {
                eval("\$nstr = \"$str\";");
                $this->str .= $nstr;
            }
            $this->str .=$recursion ? &#39;</li></ul>&#39;: &#39;</li>&#39;;
        }
        if(!$recursion)  $this->str .=&#39;</ul>&#39;;
        return $this->str;
    }
	
	/**
	 * 获取子栏目json
	 * Enter description here ...
	 * @param unknown_type $myid
	 */
	public function creat_sub_json($myid, $str=&#39;&#39;) {
		$sub_cats = $this->get_child($myid);
		$n = 0;
		if(is_array($sub_cats)) foreach($sub_cats as $c) {			
			$data[$n][&#39;id&#39;] = iconv(CHARSET,&#39;utf-8&#39;,$c[&#39;catid&#39;]);
			if($this->get_child($c[&#39;catid&#39;])) {
				$data[$n][&#39;liclass&#39;] = &#39;hasChildren&#39;;
				$data[$n][&#39;children&#39;] = array(array(&#39;text&#39;=>&#39; &#39;,&#39;classes&#39;=>&#39;placeholder&#39;));
				$data[$n][&#39;classes&#39;] = &#39;folder&#39;;
				$data[$n][&#39;text&#39;] = iconv(CHARSET,&#39;utf-8&#39;,$c[&#39;catname&#39;]);
			} else {				
				if($str) {
					@extract(array_iconv($c,CHARSET,&#39;utf-8&#39;));
					eval("\$data[$n][&#39;text&#39;] = \"$str\";");
				} else {
					$data[$n][&#39;text&#39;] = iconv(CHARSET,&#39;utf-8&#39;,$c[&#39;catname&#39;]);
				}
			}
			$n++;
		}
		return json_encode($data);		
	}
	private function have($list,$item){
		return(strpos(&#39;,,&#39;.$list.&#39;,&#39;,&#39;,&#39;.$item.&#39;,&#39;));
	}
}
?>
Copy after login

相关推荐:

php写的无限级selectTree类

The above is the detailed content of How to use the tree class in php. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1655
14
PHP Tutorial
1252
29
C# Tutorial
1226
24
PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

See all articles