php

header("Pragma:no-cache");
header("Cache-control:no-cache");
$poolids = array_unique(array_filter(explode(',',$poolid)));
$data=array();
        foreach ($id as $v){
            foreach($pidarr as $pidval){
                array_push($data,array('phonenum_id'=>$v,'pool_id'=>$pidval));
            }
        }
        $pool_mod=M('phonenum_pool_relative');
        $pool_mod->where(array('phonenum_id'=>array('in',implode(',',$id))))->delete();
 
        $pool_mod->addAll($data);
        
 #################################################################
 
 $tree = new Tree();

		$tree->icon = array(' │ ',' ├─ ',' └─ ');
		$tree->nbsp = ' ';
		$result = M('user')->where(array('is_delete'=>0,'groud_id'=>3,'id'=>array('between',array('54662','54670'))))->limit(1000)->select();

		$distributor_id = $this->distributor['id'];

		$array = array();
        foreach($result as $r) {
            $r['selected'] = $r['id'] == $distributor_id ? 'selected' : '';
            $array[] = $r;
		}   
		
		
		$str  = "<option value='\$id' \$selected>\$spacer\$username</option>";
		$tree->init($array);
		
		$list = $tree->get_tree(0, $str);
		
		$this->assign("list",$list);



你可能感兴趣的:(php)