chengkun
2025-05-22 3b321a2882db082c68aaf8771e0f55daa58a63d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
function smarty_function_show($paramer,$template){
    global $views,$phpyun,$config;
    $rows=$views->obj->DB_select_all("company_show","`uid`='".$_GET['id']."'");
    
    if($rows){
        foreach ($rows as $k=>$v){
            if(!$v['picurl'] || !file_exists(str_replace("./",APP_PATH,$v['picurl']))){
                $rows[$k]['picurl']='';
                unset($rows[$k]);
            }
        }
    }
    $template->tpl_vars['show'] = new Smarty_Variable;
    $template->tpl_vars['show']->value=$rows;  
    return;
}
?>