/**
* 递归
*/
public function getTree($data, $pk = 'id', $pid = 'pid', $child = 'child', $root = 0)
{
$tree = array(
2017-09-15