chengkun
2025-04-18 1bb985f32f2efe0f9dd69f3cf29a1c809b1cf96d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/*
 * 分城市调用
 * ----------------------------------------------------------------------------
 *
 *
 * ============================================================================
*/ 
/*function smarty_function_fz_list($paramer,&$smarty){
    global $db,$db_config,$city_ABC;
    include(PLUS_PATH."domain_cache.php");
    foreach($site_domain as $s_v){
        if($s_v['fz_type']=='1'){
            $city_id[]=$s_v['cityid'];
        } 
    } 
    $city_ids=implode(",",$city_id);
    $sitecity=$db->select_all("city_class","`id` in(".$city_ids.")","`id`,`name`,`letter`");
    foreach($city_ABC as $key=>$val){
        foreach($sitecity as $v){ 
            if($val==$v['letter']){
                $site[$val][]= $v;
            } 
        }  
    }   
    $smarty->assign("$paramer[fz_list]",$site);
}*/
function smarty_function_hy_list($paramer,&$smarty){ 
    global $db,$db_config;
    include(PLUS_PATH."domain_cache.php");
    foreach($site_domain as $h_v){
        if($h_v['fz_type']=='2'){
            
            if($h_v['mode']=='2'){
                $h_v['url']=$config['sy_weburl'].'/'.$h_v['indexdir'].'/';
            }else{
                $h_v['url']='http://'.$h_v['host'];
            }
            $hy_site[]=$h_v;
        } 
    }  
    $smarty->assign("$paramer[hy_list]",$hy_site);
}
?>