我需要将价格乘以1.2,这是我的代码,但结果不成功,数字丢失。
例如12900美元,结果是4335美元(结果不对)
正确的结果是:$ 12900 x 1.12 = $ 15.480
我的代码:
<?php echo '$' . round((preg_replace('/[^0-9.]/', '', $product->get_price_html()) * 1.2), 0); ?>
<div id="listadeprecio">
<div id="preciointernet">
<p class="price"><?php echo $product->get_price_html(); ?></p>
Efectivo, Transferencia, Depósito Bancario
</div>
</br>
<div id="preciocredito">
<div class="credito" style="color: black; font-size: 22px;"><?php echo '$' . round((preg_replace('/[^0-9.]/', '', $product->get_price_html()) * 1.2), 0); ?> (beta)</div>
Precio WebPay T. Debito/Credito</br>
<img src="https://jumpseller.cl/images/gateways/gateway_webpay.jpg" alt="WebPay Plus" height="42" style="max-height: 75px;">
</div>
</div>
&#13;