本文实例讲述了php无限极分类实现方法。分享给大家供大家参考,具体如下:
今天给大家带来的是php的无限极分类技术,本人把无限极分类划分为两种。
首先我把数据库表给大家看看,数据库是tasks,数据库表也是tasks
第一种方法(数组法)
这种方法其实是先把所有的数据查询出来,重点在于生成的二维数组
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
//分类方法
function make_list( $parent , $deep = 0){
global $tasks ; //申明全局变量
global $strarr ; //申明全局变量
$qianzhui = str_repeat ( " " , $deep ). "|--" ;
foreach ( $parent as $key => $value ) {
$strarr [] = $qianzhui . $value ;
if (isset( $tasks [ $key ])){
make_list( $tasks [ $key ],++ $deep ); //递归调用函数
}
}
}
//数据库连接
$dbc = mysqli_connect( "localhost" , "root" , "1234" , "tasks" );
//拼接sql语句
$q = "select task_id,parent_id,task from tasks where date_completed = '0000-00-00:00:00:00' order by parent_id,date_added asc" ;
//执行sql
$r = mysqli_query( $dbc , $q );
//遍历结果集
while (list( $task_id , $parent_id , $task ) = mysqli_fetch_array( $r ,mysqli_num)) {
//组成数组(一级键为parent_id,二级键为task_id,值为任务内容)
$tasks [ $parent_id ][ $task_id ] = $task ;
}
//打印数组
echo "<pre>" ;
print_r( $tasks );
echo "</pre>" ;
make_list( $tasks [0]);
echo "<pre>" ;
//打印缩进数组
print_r( $strarr );
echo "</pre>" ;
?>
|
运行结果图
第二种方法(查表法)
这种方法其实是在一开始只查询出parent_id=0的所有任务,然后采用递归的方式,动态生成查询条件,然后把每条记录的task_id又作为task_id,这样又进行新一轮的查询,知道查询结果为空。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
function findarr( $where = "parent_id = 0" , $deep = 0){
$dbc = mysqli_connect( "localhost" , "root" , "1234" , "tasks" );
global $strarr ;
$q = "select task_id,parent_id,task from tasks where " . $where . " order by parent_id,date_added asc" ;
$r = mysqli_query( $dbc , $q );
$qianzhui = str_repeat ( " " , $deep ). "|--" ;
while (list( $task_id , $parent_id , $task ) = mysqli_fetch_array( $r ,mysqli_num)) {
$strarr [] = $qianzhui . $task ;
//拼接查询条件
$where = "parent_id = " . $task_id ;
//递归查询
findarr( $where ,++ $deep );
}
}
findarr();
//打印缩进数组
echo "<pre>" ;
print_r( $strarr );
echo "</pre>" ;
?>
|
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://blog.csdn.net/baochao95/article/details/51705385