- /**
- +------------------------------------------------
- * ユニバーサルツリークラス
- +----------------------------------------------------- -- -----
- * @author yangyunzhou@foxmail.com
- +-------------------------------- -- --------------
- *@date 2010 年 11 月 23 日 10:09:31
- +----------------- ---- ------------------------------
- */
- class Tree
- {
-
- /**
- +------------------------------------------------
- * ツリー構造を生成するには 2 次元配列が必要です
- +------------------------------------ - -----------
- * @author yangyunzhou@foxmail.com
- +-------------------------- -- ------------------------
- * @var 配列
- */
- var $arr = array();
-
- /**
- +------------------------------------------------
- * ツリー構造を生成するために必要な変更記号は、画像に置き換えることができます
- +-------------------------------- - ---------------
- * @author yangyunzhou@foxmail.com
- +--------------------- -- ------------------------
- * @var 配列
- * /
- var $icon = array('│','§',' └');
-
- /**
- * @アクセス非公開
- */
- var $ret = '';
-
- /**
- * コンストラクター、クラスを初期化します
- * @param array 2 次元配列、例:
- * array(
- * 1 => array('id'=>'1','parentid'=>0,' name '=>'第 1 レベルの列 1'),
- * 2 => array('id'=>'2','parentid'=>0,'name'=>'第 1 レベル列 2' ),
- * 3 => array('id'=>'3','parentid'=>1,'name'=>'第 2 レベルの列 1'),
- * 4 = > array( 'id'=>'4','parentid'=>1,'name'=>'第 2 レベルの列 2'),
- * 5 => ;'5', 'parentid'=>2,'name'=>'第 2 レベルの列 3'),
- * 6 => array('id'=>6','parentid'= >3,'name '=>'第 3 レベルの列 1'),
- * 7 => array('id'=>'7','parentid'=>3,'name'=> ;'第 3 レベルの列 2' )
- * )
- */
- functiontree($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;
- }
- }
- return $新しいですか? $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;
- }
- }
- return $a;
- }
-
- /**
- * --------------------------------------
- * ツリー構造を取得する
- * - -- ----------------------------------
- * @author yangyunzhou@foxmail.com
- * @param $ myid は、この ID の下にあるすべての子を取得すると言いました
- * @param $str ツリー構造の基本コードを生成します。例: ""
- * @ param $sid は、選択された ID です。たとえば、ツリーのドロップダウン ボックスを作成するときに必要になります
- * @param $adds
- * @param $str_group
- */
- function get_tree($myid, $str, $sid = 0, $adds = '', $str_group = '')
- {
- $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 = $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;
- }
-
- /**
- *前の方法と似ていますが、複数選択が可能です
- * /
- function 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;
- }
-
- function have($list,$item ){
- return(strpos(',,'.$list.',',','.$item.','));
- }
-
- /**
- +------------------------------------------------
- * 配列のフォーマット
- +------------------------------------------ -- -----
- * @author yangyunzhou@foxmail.com
- +-------------------------------- -- ---------------
- */
- function 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();
复制代
|