本文整理匯總了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">