欢迎光临
我们一直在努力

laobingcms在thinkphp中获取父栏目及栏目路径的方法

function selchann($cid){
	$pids = '';
    $parent_id =Db::query("select c_name,c_id, c_parentid from 80cms_column   where c_id=any(select c_parentid from 80cms_column  where c_id=".$cid.") limit 1");
    if(empty($parent_id)){
    	$pids="无";
    }
    foreach($parent_id as $k){
    	if($k['c_parentid']=='0'){
    		$pids=$k['c_name'];
    	}
    }
//  dump($parent_id);
    return $pids;

}
//获取路径
function lujing($cid){
	$pids = '';
	$data=Db::name('80cms_column')->field('c_path,c_parentid')->where(['c_id'=>$cid])->find();
    $pd=$data['c_parentid'];
    $pid=Db::name('80cms_column')->where(['c_id'=>$pd])->find();
    if($pid['c_parentid']=='0'){
    	$pid='/'.$pid['c_path'].'/'.$data['c_path'].'/';
    }else{
        $pid=$pid['c_path'].'/'.$data['c_path'].'/';
    }
    return $pid;
}

实现的效果:八零cms在thinkphp中获取父栏目及栏目路径方法

赞(0) 打赏
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 ivillcn@qq.com 举报,一经查实,本站将立刻删除。
文章名称:《laobingcms在thinkphp中获取父栏目及栏目路径的方法》
文章链接:https://www.bilibiji.com/article/161.html

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

微信扫一扫

登录

找回密码

注册