本文整理汇总了PHP中showMarkStar函数的典型用法代码示例。如果您正苦于以下问题:PHP showMarkStar函数的具体用法?PHP showMarkStar怎么用?PHP showMarkStar使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了showMarkStar函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: htmlspecialchars
?>
" title="<?php
print htmlspecialchars($product->name);
?>
" />
</a>
</div>
<?php
}
?>
<?php
if ($this->allow_review) {
?>
<table class="review_mark"><tr><td><?php
print showMarkStar($product->average_rating);
?>
</td></tr></table>
<div class="count_commentar">
<?php
print sprintf(_JSHOP_X_COMENTAR, $product->reviews_count);
?>
</div>
<?php
}
?>
<?php
print $product->_tmp_var_bottom_foto;
?>
</td>
<td>
示例2: showMarkStar
?>
<div class="short_description">
<?php
print $curr->short_description;
?>
</div>
<?php
}
?>
<?php
if ($ext_review_mark > 0) {
?>
<div class="review_mark">
<?php
print showMarkStar($curr->average_rating);
?>
</div>
<?php
}
?>
<?php
if ($ext_count_commentar > 0) {
?>
<div class="count_commentar">
<?php
print sprintf(_JSHOP_X_COMENTAR, $curr->reviews_count);
?>
</div>
<?php
示例3: formatdate
?>
</span>,
<span class='review_time'><?php
print formatdate($curr->time);
?>
</span>
</div>
<div class="review_text"><?php
print nl2br($curr->review);
?>
</div>
<?php
if ($curr->mark) {
?>
<div class="review_mark"><?php
print showMarkStar($curr->mark);
?>
</div>
<?php
}
?>
</div>
<?php
}
?>
<?php
if ($this->display_pagination) {
?>
<table class="jshop_pagination">
示例4: showMarkStar
?>
</span>
<?php
}
?>
<?php
if ($this->allow_review && $this->config->show_hits) {
?>
<span> | </span>
<?php
}
?>
<?php
if ($this->allow_review) {
?>
<span><?php
echo _JSHOP_RATING;
?>
: </span>
<span><?php
echo showMarkStar($this->product->average_rating);
?>
</span>
<?php
}
?>
</div>
<?php
}
示例5: showMarkStar
<?php
if ($show_price) {
?>
<div class="jshop_price"><?php
echo $item->product_price;
?>
</div>
<?php
}
?>
<?php
if ($show_rating) {
?>
<table class="review_mark"><tr><td>
<?php
print showMarkStar($item->average_rating);
?>
</td></tr></table>
<div class="count_commentar">
<?php
print sprintf(_JSHOP_X_COMENTAR, $item->reviews_count);
?>
</div>
<?php
}
?>
<?php
if ($params->get('show_readmore', '0')) {
?>
<p class="readmore">
<a <?php