首页 > 开发 > PHP > 正文

php从数据库查询结果生成树形列表的方法

2024-05-04 23:34:25
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php从数据库查询结果生成树形列表的方法,涉及php操作html元素生成树形列表的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php从数据库查询结果生成树形列表的方法。分享给大家供大家参考。具体分析如下:

本代码可以从数据库读取数据生成一个类似于windows的资源管理器的树形列表

 

 
  1. <?php 
  2. /* Here are the database definitions (for Solid) that i use in this code. 
  3. * It should not be hard to adapt it to another database. 
  4. */ 
  5. /* 
  6. CREATE TABLE dirent_types ( 
  7. id INTEGER NOT NULL, 
  8. icon VARCHAR(50), 
  9. name VARCHAR(50), 
  10. PRIMARY KEY(id) 
  11. ); 
  12. INSERT INTO dirent_types VALUES(1, 'folderclosed', 'Directory'); 
  13. INSERT INTO dirent_types VALUES(2, 'document', 'File'); 
  14. CREATE TABLE directory ( 
  15. id INTEGER NOT NULL, 
  16. parent INTEGER REFERENCES directory(id), 
  17. name VARCHAR(200), 
  18. icon VARCHAR(50), 
  19. type INTEGER REFERENCES dirent_types(id), 
  20. url VARCHAR(200), 
  21. PRIMARY KEY(id) 
  22. ); 
  23. DROP INDEX directory_idx; 
  24. CREATE UNIQUE INDEX directory_idx ON directory(parent, name); 
  25. CREATE SEQUENCE dirent_id; 
  26. "CREATE PROCEDURE insert_dir_entry 
  27. (name VARCHAR, parent INTEGER, type INTEGER) 
  28. RETURNS(id INTEGER) 
  29. BEGIN 
  30. EXEC SQL WHENEVER SQLERROR ABORT; 
  31. EXEC SEQUENCE dirent_id.NEXT INTO id; 
  32. EXEC SQL PREPARE c_insert 
  33. INSERT INTO directory 
  34. (id, parent, type, name) 
  35. VALUES(?, ?, ?, ?); 
  36. EXEC SQL EXECUTE c_insert USING (id, parent, type, name); 
  37. EXEC SQL DROP c_insert; 
  38. END"; 
  39. CALL insert_dir_entry('My Computer', NULL, 1); 
  40. CALL insert_dir_entry('Network Neighbourhood', NULL, 1); 
  41. CALL insert_dir_entry('lucifer.guardian.no', 2, 1); 
  42. CALL insert_dir_entry('rafael.guardian.no', 2, 1); 
  43. CALL insert_dir_entry('uriel.guardian.no', 2, 1); 
  44. CALL insert_dir_entry('Control Panel', NULL, 1); 
  45. CALL insert_dir_entry('Services', 6, 1); 
  46. CALL insert_dir_entry('Apache', 7, 2); 
  47. CALL insert_dir_entry('Solid Server 2.2', 7, 2); 
  48. */ 
  49. function icon($icon$name = ''$width = 0, $height = 0) { 
  50. global $DOCUMENT_ROOT
  51. $icon_loc = '/pics/menu'
  52. $file = "$DOCUMENT_ROOT$icon_loc/$icon.gif"
  53. if (!$width || !$height) { 
  54. $iconinfo = getimagesize($file); 
  55. if (!$width) { 
  56. $width = $iconinfo[0]; 
  57. if (!$height) { 
  58. $height = $iconinfo[1]; 
  59. printf( '<img%s border=0 align=top src="/pics/menu/%s.gif" '
  60. 'width="%d" height="%d">'$name ? " name=/"$name/"" : ''
  61. $icon$width$height); 
  62. function display_directory($parent,$showdepth=0,$ancestors=false){ 
  63. global $child_nodes$node_data$last_child
  64. reset($child_nodes[$parent]); 
  65. $size = sizeof($child_nodes[$parent]); 
  66. $lastindex = $size - 1; 
  67. if (!$ancestors) { 
  68. $ancestors = array(); 
  69. $depth = sizeof($ancestors); 
  70. printf( '<div id="node_%d" class="dirEntry" visibility="%s">'
  71. $parent$showdepth > 0 ? 'show' : 'hide'); 
  72. while (list($index$node) = each($child_nodes[$parent])) { 
  73. for ($i = 0; $i < $depth$i++) { 
  74. $up_parent = (int)$node_data[$ancestors[$i]][ 'parent']; 
  75. $last_node_on_generation = $last_child[$up_parent]; 
  76. $uptree_node_on_generation = $ancestors[$i]; 
  77. if ($last_node_on_generation == $uptree_node_on_generation) { 
  78. icon( "blank"); 
  79. else { 
  80. icon( "line"); 
  81. if ($child_nodes[$node]) { 
  82. // has children, i.e. it is a folder 
  83. $conn_icon = "plus"
  84. $expand = true; 
  85. else { 
  86. $conn_icon = "join"
  87. $expand = false; 
  88. if ($index == $lastindex) { 
  89. $conn_icon .= "bottom"
  90. elseif ($depth == 0 && $index == 0) { 
  91. $conn_icon .= "top"
  92. if ($expand) { 
  93. printf( "<a href=/"javascript:document.layers['node_%d'].visibility='show'/">"$node); 
  94. icon($conn_icon"connImg_$node"); 
  95. if ($expand) { 
  96. print( "</a>"); 
  97. $icon = $node_data[$node][ 'icon']; 
  98. if (!$icon) { 
  99. $type = $node_data[$node][ 'type']; 
  100. $icon = $GLOBALS'dirent_icons'][$type]; 
  101. icon($icon"nodeImg_$node"); 
  102. $name = $node_data[$node][ 'name']; 
  103. printf( '?<font size="%d">%s</font><br%c>', -1, $name, 10); 
  104. if ($child_nodes[$node]) { 
  105. $newdepth = $showdepth
  106. if ($newdepth > 0) { 
  107. $newdepth--; 
  108. $new_ancestors = $ancestors
  109. $new_ancestors[] = $node
  110. display_directory($node$newdepth$new_ancestors); 
  111. print( "</div/n>"); 
  112. function setup_directory($parent$maxdepth
  113. global $dirent_icons$child_nodes$node_data$last_child
  114. $dirent_icons = sql_assoc('SELECT id,icon FROM dirent_types'); 
  115. $query = 'SELECT id,parent,type,icon,name '
  116. 'FROM directory '
  117. 'ORDER BY parent,name'
  118. $child_nodes = array(); 
  119. $node_data = array(); 
  120. $res = sql($query); 
  121. while (list($id,$parent,$type,$icon,$name)=db_fetch_row($res)){ 
  122. $child_nodes[(int)$parent][] = $id
  123. $node_data[$id] = array'id' => $id
  124. 'parent' => $parent
  125. 'type' => $type
  126. 'icon' => $icon
  127. 'name' => $name); 
  128. $last_child[(int)$parent] = $id
  129. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表