#!/usr/bin/env php config('dept')->gen(13); /** title=测试 deptModel->getSons(); cid=1 pid=1 有子部门查询 >> 一级部门8|2|,8, 无子部门查询 >> 0 子部门数量统计 >> 2 */ $deptIDList = array('2', '5'); $count = array('0', '1'); $dept = new deptTest(); r($dept->getSonsTest($deptIDList[0], $count[0])) && p('0:name|parent|path', '|') && e('一级部门8|2|,8,'); //有子部门查询 r($dept->getSonsTest($deptIDList[1], $count[0])) && p() && e('0'); //无子部门查询 r($dept->getSonsTest($deptIDList[0], $count[1])) && p() && e('2'); //子部门数量统计