修罗 xiuno bbs 贴子列表改成图文列表模式 网站教程

欧阳雪姬 7月前 320

修罗 xiuno bbs 贴子列表改成图文列表模式,详情查看以下截图或本站列表!

PHP代码

<div>
<?php
    $_post = db_find_one('post', array('tid' => $_thread['tid'], 'isfirst' => 1));
    preg_match_all('/<img[\s\S]*?src\s*=\s*[\"|\'](.*?)[\"|\'][\s\S]*?>/i',$_post['message'],$matches);
    if($matches[1][0]) {
        echo "<img src = '{$matches[1][0]}' height = '100px'/>&nbsp;";
    }
    if($matches[1][1]) {
        echo "<img src = '{$matches[1][1]}' height = '100px'/>";
    }
    if($matches[1][2]) {
        echo "<img src = '{$matches[1][2]}' height = '100px'/>";
    }
?>
</div>

修改方法:打开view\htm\thread_list.inc.htm文件,在49行<div>标签上面添加以上PHP代码,代码的高度自己修改。


最新回复 (0)
返回
发新帖