君山 发表于 2020-11-24 16:42:03

Discuz getattachtablebypid函数 通过 PID 获取附件表名



/**
* 通过 PID 获取附件表名
* @param <int> $pid
*/
function getattachtablebypid($pid) {
        $tableid = DB::result_first("SELECT tableid FROM ".DB::table('forum_attachment')." WHERE pid='$pid' LIMIT 1");
        return 'forum_attachment_'.($tableid >= 0 && $tableid < 10 ? intval($tableid) : 'unused');
}
页: [1]
查看完整版本: Discuz getattachtablebypid函数 通过 PID 获取附件表名