-
/**
- ----------------------------------------------- -
- * 通用的樹型類別
- ------------------------------------- -----------
- * @author yangyunzhou@foxmail.com
- ------------------------- -----------------------
- * @date 2010年11月23日10:09:31
- ------- -----------------------------------------
- */
- 類樹
- {
-
- /**
- ----------------------------------------------- -
- * 產生樹型結構所需的2維數組
- -------------------------------- ------------------
- * @author yangyunzhou@foxmail.com
- -------------------- ----------------------------
- * @var Array
- */ var $arr = array();
-
- /**
- ----------------------------------------------- -
- * 產生樹型結構所需修飾符號,可換成圖片
- ----------------------------- -------------------
- * @author yangyunzhou@foxmail.com
- ----------------- -------------------------------
- * @var Array
- */
- var $icon = array('│','├',' └');
-
- /**
- * @access 私人
- */
- var $ret = '';
-
- /**
- * 建構函數,初始化類別
- * @param array 2維數組,例如:
- * array(
- * 1 => array('id'=>'1','parentid'= >0,'name'=>'一級欄位一'),
- * 2 => array('id'=>'2','parentid'=>0,'name'=>'一級欄位二'),
- * 3 => array('id'=>'3','parentid'=>1,'name'=>'二級欄位一'),
- * 4 => array ('id'=>'4','parentid'=>1,'name'=>'二級欄位二'),
- * 5 => array('id'=>'5','parentid '=>2,'name'=>'二級欄位三'),
- * 6 => array('id'=>'6','parentid'=>3,'name'=>'三級欄一'),
- * 7 => array('id'=>'7','parentid'=>3,'name'=>'三級欄位二')
- * )
- */
- 函數樹($arr=array())
- {
- $this->arr = $arr;
- $this->ret = '';
- return is_array($arr);
- }
-
- /* *
- * 得到父級陣列
- * @param int
- * @return array
- */
- function get_parent($myid)
- {
- $newarr = array();
- if(!isset($this->arr[$myid])) return false;
- $pid = $this->arr[$myid]['parentid'];
- $pid = $this->arr[$pid]['parentid'];
- if (is_array($this- >arr))
- {
- foreach($this->arr as $id => $a)
- {
- if($a['parentid' ] == $pid) $newarr[ $id] = $a;
- }
- }
- return $newarr;
- }
-
- /**
- * 得到子級數組
- * @param int
- * @return array
- */
- function get_child($myid)
- {
- $a = $newarr = array();
- if(is_array($this->arr))
- {
- foreach($ this->arr as $id =>; $a)
- {
- if($a['parentid'] == $myid) $newarr[$id] = $a;
- }
- }
- 回傳$newarr ? $ $ newarr : false;
- }
-
- /**
- * 取得目前位置陣列
- * @param int
- * @return array
- */
- function get_pos($myid,&$newarr)
- {
- $a = array();
- if(!isset($this->arr[$myid])) return false;
- $newarr[] = $this->arr[$myid];
- $pid = $this -> arr[$myid]['parentid'];
- if(isset($this->arr[$pid]))
- {
- $this->get_pos($pid, $newarr);
- }
- if(is_array($newarr))
- {
- krsort($newarr);
- foreach($newarr as $v)
- {
- $a[$v ['id']] = $v;
- }
- }
- 回傳$a;
- }
-
- /**
- * ---------------------------
- * 트리 가져오기 구조
- * ---------------------------
- * @ 작성자 yangyunzhou@foxmail.com
- * @param $myid는 이 ID 아래의 모든 하위 항목을 가져오는 것을 의미합니다
- * @param $str은 트리 구조의 기본 코드를 생성합니다. 예: "
- * @param $sid 트리 드롭다운 박스를 만들 때와 같이 선택한 ID입니다.
- * @param $adds
- * @param $str_그룹
- */
- 함수 get_tree($myid, $str, $sid = 0, $adds = '', $str_group = '')
- {
- $number=1;
- $child = $this->get_child($myid);
- if(is_array($child)) {
- $total = count($child);
- foreach ($id=>$a인 $child) {
- $j=$k='';
- if($number==$total) {
- $j .= $this-> icon[2];
- } else {
- $j .= $this->icon[1];
- $k = $adds ? $this->icon[0] : '';
- }
- $spacer = $adds ? $adds.$j : '';
- $selected = $id==$sid ? '선택됨': '';
- @extract($a);
- $parentid == 0 && $str_group ? eval("$nstr = "$str_group";") : eval("$nstr = "$str";");
- $this->ret .= $nstr;
- $this-> get_tree($id, $str, $sid, $adds.$k.' ',$str_group);
- $number ;
- }
- }
- return $this->ret ;
- }
-
- /**
- * 이전 방법과 유사하지만 다중 선택이 가능합니다
- */
- 함수 get_tree_multi($myid, $str, $sid = 0, $adds = '')
- {
- $ number=1;
- $child = $this->get_child($myid);
- if(is_array($child))
- {
- $total = count($child);
- foreach($child as $id=>$a)
- {
- $j=$k='';
- if($number==$total)
- {
- $ j .= $this->icon[2];
- }
- else
- {
- $j .= $this->icon[1];
- $k = $adds ? $this->icon[0] : '';
- }
- $spacer = $adds ? $adds.$j : '';
-
- $selected = $this->have($sid,$id) ? '선택됨': '';
- @extract($a);
- eval("$nstr = "$str";");
- $this->ret .= $nstr;
- $this->get_tree_multi($id, $str, $sid, $adds.$k.' ');
- $number ;
- }
- }
- return $this- >ret;
- }
-
- 함수 have($list,$item){
- return(strpos(',,'.$list.',',','.$item. ','));
- }
-
- /**
- ---------------------------------- -
- * 배열 형식 지정
- --------------------------- ----- ----------
- * @author yangyunzhou@foxmail.com
- -------- ------- -------------
- */
- 함수 getArray($myid=0, $sid=0, $adds='')
- {
- $number=1;
- $child = $this->get_child($myid);
- if(is_array($child)) {
- $total = count($child);
- foreach($child as $id=>$a) {
- $j=$k='';
- if($number==$total) {
- $j .= $this ->icon[2];
- } else {
- $j .= $this->icon[1];
- $k = $adds ? $this->icon[0] : '';
- }
- $spacer = $adds ? $adds.$j : '';
- @extract($a);
- $a['name'] = $spacer.' '.$a['name'];
- $this->ret[$a['id']] = $a;
- $fd = $adds.$k.' ';
- $this->getArray($id, $sid, $fd);
- $number ;
- }
- }
-
- return $this->ret;
- }
- }
- ?>
复代码
- 사용법:
-
- $tree = 새 트리; // new 之前请记得包含tree文件!
- $tree->tree($data); // 数据格式请参考 트리 방식 상면적 注释!
-
- // 如果使用数组, 请使用 getArray 방식
- $tree->getArray();
-
- // 下拉菜单选项使사용 get_tree방법
- $tree->get_tree();
复主代码
|