我有两个表报告,employee_details 报告包含suprvisor_id,subordinate_id字段,这些字段在employee_details表中为emp_id。报告表包含三个级别(主管 - >下属 - >下属 - >雇员),我想通过从employee_details表中提取名称来显示此数据作为下拉列表,作为等级。所以请帮助我有没有办法做到这一点?
答案 0 :(得分:0)
如果要显示孔树,则无需在数组中获取孔树。这有点棘手。
我认为你并不是真的想知道你在树上有多少级别。 所以最简单的方法是以下,但在大树中它的性能很差。当树长得很大时,你需要检查其他技术。
以下是快速编写,未经测试可能会有一些错误。但是我发布它给你一个可能的解决方案:
<?php
class tree {
private $level = 0;
public function getChildsRecoursive($parentid=0,$recoursive=false) {
// you would have your own db object... please replace this...
$db->select("select * from reporting r JOIN employee_details d ON(r.subordinate_id=d.emp_id) where supervisor_id='$parentid' ORDER BY d.name");
$r = array();
while($data = $db->fetchArray()) {
$sid = $data['supervisor_id'];
$cid = $data['subordinate_id'];
if($recoursive) {
$this->level++;
$data['level'] = $this->level;
$data['childs'] = $this->getChildsRecoursive($cid, true);
$this->level--;
}
$r[] = $data;
}
return $r;
}
public function getDropdown() {
// I suspect the top Level have a supervisor_id = 0
$data = $this->getChildsRecoursive(0,true);
// you can do a print_r($data) here to see if the results are correct
$r = "<select>";
foreach($data as $d) {
$r .= $this->getOptionsRecoursive($d);
}
$r .= "</select>";
return $r;
}
public function getOptionsRecoursive($data) {
$r = "<option>";
for($i=0;$i<$data['level'];$i++) {
$r .= " ";
}
$r .= $data['name'];
$r .= "</option>\n";
if(isset($data['childs'])) {
foreach($data['childs'] as $c) {
$r .= $this->getOptionsRecoursive($c);
}
}
return $r;
}
}
?>
希望有助于理解。 (请注意,这将导致许多查询,具体取决于树的大小)。
要开始你需要做
$tree = new tree();
echo $tree->getDropdown();