去评论
dz插件网

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

逝水年华
2023/10/24 14:14:49
  1. /** * 通过 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');}