discuz x帖子内容[attach]转html [复制链接]

moqu8 2018-6-15

25 0
之前用过
{echo discuzcode($value['message'], 0, 0, 0, 1, 1, 0, 0, 0, 0, 0);}
或者
require_once libfile('function/discuzcode');
{echo discuzcode($value['message']);}

能转大部分UBB,但是[attach]转不了。

下面是来自网络的代码,针对attach。
我用的时候做了一些修改。

  1. <?php

  2. $thread_info = DB::fetch_first ( "select a.`tid`, a.`authorid`, a.`author`,a.`dateline`, a.`subject`, b.`message`,b.`pid`, c.`attachment` as thumb, c.`remote` from " . DB::table ( 'forum_thread' ) . " a left join " . DB::table ( 'forum_post' ) . " b on b.tid=a.tid left join " . DB::table ( 'forum_threadimage' ) . " c on c.tid=a.tid where b.pid=$pid");
  3. require_once libfile ( 'function/discuzcode' );
  4. $thread_info ['dateline'] = date ( "Y-m-d H:i:s", $thread_info ['dateline'] );
  5. $thread_info ['message'] = discuzcode ( $thread_info ['message'] );
  6. if (preg_match_all ( "/\[attach\](\d+)\[\/attach\]/i", $thread_info ['message'], $matchaids )) {
  7. $attach_ids = $matchaids [1];
  8. }
  9. $attach_list = array ();
  10. foreach ( $attach_ids as $aid ) {
  11. $find = "/\[attach\]$aid\[\/attach\]/i";
  12. $thread_info ['message'] = preg_replace ( $find, get_lw_attach_path ( $aid ), $thread_info ['message'], 1 );
  13. $thread_info ['message'] = preg_replace ( $find, '', $thread_info ['message'] );
  14. }
  15. function get_lw_attach_path($aid) {
  16. global $_G;
  17. $return = $filename = '';
  18. if ($attach = C::t ( 'forum_attachment_n' )->fetch ( 'aid:' . $aid, $aid, array (1,- 1) )) {
  19. return get_lw_attach_path_str ( $attach );
  20. }
  21. return $filename;
  22. }
  23. function get_lw_attach_path_str($attach) {
  24. global $_G;
  25. if (! $attach ['isimage']) {
  26. return '<a href="' . $_G ['siteurl'] . 'forum.php?mod=attachment&aid=' . aidencode ( $attach ['aid'] ) . '">' . $attach ['filename'] . '</a>';
  27. }
  28. if ($attach ['remote']) {
  29. $imgurl = $_G ['setting'] ['ftp'] ['attachurl'] . 'forum/' . $attach ['attachment'];
  30. return '<p><img onclick="viewimage(this);" src="' . $imgurl . '" style="max-width:834px"/></p>';
  31. } else {
  32. if (preg_match ( '/^(?!http:)/', $attach ['url'] )) {
  33. $attach ['url'] = $_G ['siteurl'] . 'upload/forum/' . $attach ['url'];
  34. }
  35. $imgurl = $attach ['url'] . $attach ['attachment'] . ($_G ['gp_width'] ? '&width=' . $_G ['gp_width'] : '') . ($_G ['gp_height'] ? '&height=' . $_G ['gp_height'] : '');
  36. return '<p><a href="' . $imgurl . '" target="_blank"><img height="320" width="320" src="' . $imgurl . '" /></a></p>';
  37. }
  38. }

  39. ?>
复制代码

条件where b.pid=$pid,如果只调用主题帖内容,改为where a.tid=$tid and b.first=1。
$pid或$tid使用时需要先获得。

在调用帖子内容时,另外涉及到权限问题,如密码、隐藏内容、查看权限、主题售价等等。

最新回复 (0)
返回
支持中心
邮箱:winkill2012@qqcom
新站优化中!部分功能尚未完善,敬请谅解!
支持中心