这篇文章主要为大家详细介绍了解决PHP递归生成文章树的实现方法,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
因为自己的一个技术站,以文章为主,文章有些是一个系列的,所以想把这些文章归类,同一类的在一个下面。
数据库好设计,无非用id,fatherid来进行归类,fatherid代表父类是那篇文章的id,id是文章的唯一id,层次不限,可以是两层,可以是三层。fatherid为0的表示顶层文章。
php代码,主要是递归
代码如下:
function category_tree($fatherid){
//四海网_www.q1010.com http://www.q1010.com/
//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使用递归生成文章树
以上所述就是本文的全部内容了,希望大家能够喜欢。
本文来自:http://www.q1010.com/173/21549-0.html
注:关于解决PHP递归生成文章树的实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:递归
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。