我取出数据库cdb_attachments中message的内容后通过以下语句转换:
- //$message['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], ($forum['allowimgcode'] && $showimages ? 1 : 0), $forum['allowhtml'], ($forum['jammer'] && $post['authorid'] != $discuz_uid ? 1 : 0), 0, $post['authorid']); //这是DZ的转换原句。
- //由于我不需要这么麻烦想所有的都转因此部分参数使用默认值1,语句如下:
- $message['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], 1, 1, 1, 1, (1 && $post['authorid'] != $discuz_uid ? 1 : 0), 0, $post['authorid']);
复制代码
转换之后其它的都已经好了,可是有个问题,就是:转换之后没有<br /> 因此转换后的内容没有回车,都在一行里面。
请问是什么问题,怎么解决? |