本文整理汇总了PHP中Price::getPriceTax方法的典型用法代码示例。如果您正苦于以下问题:PHP Price::getPriceTax方法的具体用法?PHP Price::getPriceTax怎么用?PHP Price::getPriceTax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Price
的用法示例。
在下文中一共展示了Price::getPriceTax方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<td>Bezeichnung</td>
<td>Anmerkung</td>
<td>Preis</td>
</tr>
<?php
$list = $product->getByFilter($search_product, $search_category, $item_offset, $item_count);
$count = $product->getCountByFilter($search_product, $search_category);
for ($i = 0; $i < count($list); $i++) {
if ($list[$i][0] == "") {
continue;
}
echo "\t<tr class=\"list_normal\" onclick=\"javascript: window.location.href = 'product_details.php?product_id=" . $list[$i][0] . "';\" onmouseover=\"javascript: this.className='list_hover';\" onmouseout=\"javascript: this.className='list_normal';\">\n";
echo "\t\t<td>" . $list[$i][0] . "</td>\n";
echo "\t\t<td>" . $list[$i][1] . "</td>\n";
echo "\t\t<td>" . $list[$i][2] . "</td>\n";
echo "\t\t<td align=\"right\">" . number_format($price->getPriceTax($priceset_id, $list[$i][0], $netto, $list[$i][4]), 2) . "</td>\n";
echo "\t</tr></a>\n";
}
?>
</table>
</div>
<div width="90%" align="right">
<?php
if ($item_offset != 0) {
echo "<a href=\"product_list.php?search_product=" . $search_product . "&search_category=" . $search_category . "&item_offset=" . ($item_offset - $item_count) . "&item_count=" . $item_count . "\">zurück</a> ";
}
$page_count = $count[0][0] / $item_count;
$start = $item_offset / $item_count - 2;
if ($start < 0) {
示例2:
</tr>
<tr>
<td><font color="#8C8C8C">Produktnummer:</font> <?php
echo $list[$i][0];
?>
</td>
</tr>
<tr>
<td><font color="#8C8C8C">Anmerkungen:</font> <?php
echo $list[$i][8];
?>
</td>
</tr>
<tr>
<td align="right" colspan="2"><font color="#8C8C8C">Preis:</font> <big><?php
echo number_format($price->getPriceTax($priceset_id, $list[$i][0], $netto, $list[$i][4]), 2);
?>
EUR</big></td>
</tr>
<tr>
<td align="right" colspan="2"> </td>
</tr>
<tr>
<td align="right" colspan="2">
<form action="#" method="post" name="product_details_to_cart">
<input type="hidden" name="action" value="add_product_to_cart">
<input type="hidden" name="product_id" value="<?php
echo $list[$i][0];
?>
">
<input type="text" name="amount" value="1.0" size="7">