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