destoon官方版本是无法任意页面调取公司logo,今天我给大家添加这个功能,希望对大家有所帮助!
首先在api/extend.func.php下加入:
//随机调取公司logo
function get_company_thumb($username) {
global $db;
$cache=0;
$r = $db->get_one("SELECt thumb FROM {$db->pre}company WHERe username='$username'", $cache);
return $r['thumb'];
}然后在模板页面调取,例如:
{get_company_thumb($t[username])}
这样就好了,调取出来了,案例:




