Heim >Backend-Entwicklung >PHP-Tutorial >ecshop怎样单独的取出各项评论的数据

ecshop怎样单独的取出各项评论的数据

WBOY
WBOYOriginal
2016-06-06 20:13:52886Durchsuche

ecshop的评论应该怎样单独取出我要的数据呢?

<code><div class="comment_yes">
    <p class="comment_pl">
        <span class="dspinl2 comment_name">
            <em>评论者的头像</em>
            <i class="">评论者的用户名</i>
        </span>
        <span class="dspinl2 comment_text">
        <em>
            评论内容
        </em>
        <i>评论时间</i>
        </span>
    </p>
</div>
</code>

因为ecshop在页面通过{insert name='comments' type=$type id=$id}一下子取太多东西了,我要怎样能单独取出上面那种我要的数据呢?

回复内容:

ecshop的评论应该怎样单独取出我要的数据呢?

<code><div class="comment_yes">
    <p class="comment_pl">
        <span class="dspinl2 comment_name">
            <em>评论者的头像</em>
            <i class="">评论者的用户名</i>
        </span>
        <span class="dspinl2 comment_text">
        <em>
            评论内容
        </em>
        <i>评论时间</i>
        </span>
    </p>
</div>
</code>

因为ecshop在页面通过{insert name='comments' type=$type id=$id}一下子取太多东西了,我要怎样能单独取出上面那种我要的数据呢?

重写 comments 的代码。
{insert name='comments' type=$type id=$id}
这一块是调用了一个文件的,找到这个文件,重写。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php类这样写多余么?Nächster Artikel:Laravel Log模块设计