찾다
백엔드 개발PHP 튜토리얼PHP에서 트리 클래스를 사용하는 방법

PHP에서 트리 클래스를 사용하는 방법

Mar 19, 2018 pm 03:07 PM
phptree사용방법

本文主要和大家分享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>";

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;));
	}
}
?>

相关推荐:

php写的无限级selectTree类

위 내용은 PHP에서 트리 클래스를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
절대 세션 타임 아웃의 차이점은 무엇입니까?절대 세션 타임 아웃의 차이점은 무엇입니까?May 03, 2025 am 12:21 AM

절대 세션 시간 초과는 세션 생성시 시작되며, 유휴 세션 시간 초과는 사용자가 작동하지 않아 시작합니다. 절대 세션 타임 아웃은 금융 응용 프로그램과 같은 세션 수명주기의 엄격한 제어가 필요한 시나리오에 적합합니다. 유휴 세션 타임 아웃은 사용자가 소셜 미디어와 같이 오랫동안 세션을 활성화하려는 응용 프로그램에 적합합니다.

세션이 서버에서 작동하지 않으면 어떤 조치를 취 하시겠습니까?세션이 서버에서 작동하지 않으면 어떤 조치를 취 하시겠습니까?May 03, 2025 am 12:19 AM

서버 세션 고장은 다음 단계를 따라 해결할 수 있습니다. 1. 서버 구성을 확인하여 세션이 올바르게 설정되었는지 확인하십시오. 2. 클라이언트 쿠키를 확인하고 브라우저가 지원하는지 확인하고 올바르게 보내십시오. 3. Redis와 같은 세션 스토리지 서비스가 정상적으로 작동하는지 확인하십시오. 4. 올바른 세션 로직을 보장하기 위해 응용 프로그램 코드를 검토하십시오. 이러한 단계를 통해 대화 문제를 효과적으로 진단하고 수리 할 수 ​​있으며 사용자 경험을 향상시킬 수 있습니다.

session_start () 함수의 중요성은 무엇입니까?session_start () 함수의 중요성은 무엇입니까?May 03, 2025 am 12:18 AM

session_start () iscrucialinphpformanagingUsersessions.1) itiniteSanewsessionifnoneexists, 2) ResumesAnxistessions, and3) setSasessionCookieForContInuityAcrosrequests, enablingplicationsirecationSerauthenticationAndpersonalizestContent.

세션 쿠키를 위해 httponly 플래그를 설정하는 것이 중요합니까?세션 쿠키를 위해 httponly 플래그를 설정하는 것이 중요합니까?May 03, 2025 am 12:10 AM

XSS 공격을 효과적으로 방지하고 사용자 세션 정보를 보호 할 수 있기 때문에 httponly 플래그를 설정하는 것은 세션 쿠키에 중요합니다. 구체적으로, 1) httponly 플래그는 JavaScript가 쿠키에 액세스하는 것을 방지합니다. 2) PHP 및 Flask에서 SetCookies 및 Make_response를 통해 깃발을 설정할 수 있습니다. 3) 모든 공격으로부터 방지 할 수는 없지만 전체 보안 정책의 일부가되어야합니다.

웹 개발에서 PHP 세션은 어떤 문제를 해결합니까?웹 개발에서 PHP 세션은 어떤 문제를 해결합니까?May 03, 2025 am 12:02 AM

phpssessionssolvetheproblemofmainingstateacrossmultiplehtttprequestsbystoringdataontheserversociatingititwithauniquessessionid.1) theStoredAserver-side, 일반적으로, 일반적으로 and insessionsecietoretoretrievedata.2) sessionsenhances

PHP 세션에 어떤 데이터를 저장할 수 있습니까?PHP 세션에 어떤 데이터를 저장할 수 있습니까?May 02, 2025 am 12:17 AM

phpsessionscanstorestrings, 숫자, 배열 및 객체 1.Strings : TextDatalikeUsernames.2.numbers : integorfloatsforcounters.3.arrays : listslikeshoppingcarts.4.objects : complexStructuresThatareserialized.

PHP 세션을 어떻게 시작합니까?PHP 세션을 어떻게 시작합니까?May 02, 2025 am 12:16 AM

tostartAphPessession, us

세션 재생이란 무엇이며 보안을 어떻게 개선합니까?세션 재생이란 무엇이며 보안을 어떻게 개선합니까?May 02, 2025 am 12:15 AM

세션 재생은 세션 고정 공격의 경우 사용자가 민감한 작업을 수행 할 때 새 세션 ID를 생성하고 이전 ID를 무효화하는 것을 말합니다. 구현 단계에는 다음이 포함됩니다. 1. 민감한 작업 감지, 2. 새 세션 ID 생성, 3. 오래된 세션 ID 파괴, 4. 사용자 측 세션 정보 업데이트.

See all articles

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

Video Face Swap

Video Face Swap

완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

뜨거운 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

ZendStudio 13.5.1 맥

ZendStudio 13.5.1 맥

강력한 PHP 통합 개발 환경

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

Eclipse용 SAP NetWeaver 서버 어댑터

Eclipse용 SAP NetWeaver 서버 어댑터

Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.