写递归函数,可考虑缓存,定义一些静态变量来存上一次运行的结果,多程序运行效率很有帮助.大概步骤如下:首先到数据库取数据,放到一个数组,然后把数据转化为一个树型状的数组,最后把这个树型状的数组转为html代码。下面我们来看个实例
因为自己的一个技术站,以文章为主,文章有些是一个系列的,所以想把这些文章归类,同一类的在一个下面。
数据库好设计,无非用id,fatherid来进行归类,fatherid代表父类是那篇文章的id,id是文章的唯一id,层次不限,可以是两层,可以是三层。fatherid为0的表示顶层文章。
php代码,主要是递归
function category_tree($fatherid){
//require_once("mysql_class/config.inc.php");
//require_once("mysql_class/Database.class.php");
$db = new Database(DB_SERVER, DB_USER, DB_PASS, DB_DATABASE);
$db->connect();
$sql = "SELECT id,title,url FROM ".TABLE_TASK."
WHERE fatherid=$fatherid and ispublic=1 order by id asc";
$articles = $db->query($sql);
$db->close();
while ($record = $db->fetch_array($articles)){
$i = 0;
if ($i == 0){
if($fatherid==0){
echo '<ul class="article-list-no-style border-bottom">';
}else{
echo '<ul class="article-list-no-style">';
}
}
if($fatherid==0){
echo '<li><span class="glyphicon glyphicon-log-in"
aria-hidden="true" id="han'.$record['id'].'">
</span> <a href="'.$record['url'].'" target="_blank">'
. $record['title'].'</a>';
}else{
echo '<li><span class="glyphicon glyphicon-chevron-right" aria-hidden="true">
</span> <a href="'.$record['url'].'" target="_blank">'
. $record['title'].'</a>';
}
category_tree($record['id']);
echo '</li>';
$i++;
if ($i > 0){
echo '</ul>';
}
}
}调用:
立即学习“PHP免费学习笔记(深入)”;
category_tree(0) //先提取最顶层文章
总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。
相关推荐:
PHP中static关键字的定义、迟绑定以及与self关键字的区别
以上就是PHP基于递归生成文章树的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号